Package net.paoding.rose.mock.web.instruction

Examples of net.paoding.rose.mock.web.instruction.MockInstructionExecutor


    private RoseTestEnv() throws ServletException {
        File file = new File("target/test");
        ServletContext servletContext = new MockServletContext(file.getPath(),
                new FileSystemResourceLoader());
        instructionExecutor = new MockInstructionExecutor();
        instructionExecutor.setStoresInstructionInRequest(true);
        roseFilter = new RoseFilter();
        roseFilter.setInstructionExecutor(instructionExecutor);
        roseFilter.init(new MockFilterConfig(servletContext, "roseFilter"));
    }
View Full Code Here

TOP

Related Classes of net.paoding.rose.mock.web.instruction.MockInstructionExecutor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.