Package net.sourceforge.marathon.junit.swingui

Examples of net.sourceforge.marathon.junit.swingui.TestSuitePanel


        return builder.getPanel();
    }

    private Component createNotInSuitePanel() {
        JSplitPane pane = new JSplitPane(JSplitPane.VERTICAL_SPLIT);
        testsPanel = new TestSuitePanel();
        testsPanel.showTestTree(testCreator.getTest("AllTests"));
        pane.setTopComponent(testsPanel);

        testSuitesPanel = new TestSuitePanel();
        testSuitesPanel.showTestTree(testCreator.getAllSuites());

        testSuitesPanel.getTree().setRootVisible(false);

        testsPanel.getTree().addTreeSelectionListener(new TreeSelectionListener() {
View Full Code Here

TOP

Related Classes of net.sourceforge.marathon.junit.swingui.TestSuitePanel

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.