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() {