Package org.apache.click.pages

Examples of org.apache.click.pages.SetPathToJspPage


    public void testSetPathToJSP() {
        MockContainer container = new MockContainer("web");
        container.start();
        container.getRequest().setMethod("GET");

        SetPathToJspPage page = (SetPathToJspPage) container.testPage(SetPathToJspPage.class);
        assertEquals(SetPathToJspPage.PATH, container.getForward());

        container.stop();
    }
View Full Code Here


    public void testSetPathToJSP() {
        MockContainer container = new MockContainer("web");
        container.start();
        container.getRequest().setMethod("GET");

        SetPathToJspPage page = (SetPathToJspPage) container.testPage(SetPathToJspPage.class);
        assertEquals(SetPathToJspPage.PATH, container.getForward());

        container.stop();
    }
View Full Code Here

TOP

Related Classes of org.apache.click.pages.SetPathToJspPage

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.