1 package junit.swingui; 2 3 import javax.swing.JTabbedPane ; 4 5 import junit.framework.Test; 6 import junit.framework.TestResult; 7 8 14 interface TestRunView { 15 18 public Test getSelectedTest(); 19 22 public void activate(); 23 26 public void revealFailure(Test failure); 27 30 public void addTab(JTabbedPane pane); 31 34 public void aboutToStart(Test suite, TestResult result); 35 38 public void runFinished(Test suite, TestResult result); 39 } | Popular Tags |