Package org.openengsb.ui.admin.wiringPage.WiringPage

Examples of org.openengsb.ui.admin.wiringPage.WiringPage.CheckedTree


        assertThat(domains.getChoices().get(1), IsAssignableFrom.isAssignableFrom(TestDomainInterface.class));
    }

    @Test
    public void testContextList_shouldBeLoaded() throws Exception {
        CheckedTree globals = (CheckedTree) tester.getComponentFromLastRenderedPage("wiringForm:contextList");
        TreeModel tree = globals.getModelObject();
        assertThat(tree.getChildCount(tree.getRoot()), is(6));
        assertThat(tree.getChild(tree.getRoot(), 0).toString(), is("bar"));
    }
View Full Code Here

TOP

Related Classes of org.openengsb.ui.admin.wiringPage.WiringPage.CheckedTree

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.