link start!
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package junit.swingui;
|
||||
|
||||
import javax.swing.ListModel;
|
||||
import junit.framework.Test;
|
||||
|
||||
public interface TestRunContext {
|
||||
ListModel getFailures();
|
||||
|
||||
void handleTestSelected(Test test);
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
package junit.swingui;
|
||||
|
||||
import javax.swing.JTabbedPane;
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestResult;
|
||||
|
||||
interface TestRunView {
|
||||
void aboutToStart(Test test, TestResult testResult);
|
||||
|
||||
void activate();
|
||||
|
||||
void addTab(JTabbedPane jTabbedPane);
|
||||
|
||||
Test getSelectedTest();
|
||||
|
||||
void revealFailure(Test test);
|
||||
|
||||
void runFinished(Test test, TestResult testResult);
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 870 B |
Binary file not shown.
|
After Width: | Height: | Size: 862 B |
Binary file not shown.
|
After Width: | Height: | Size: 888 B |
Binary file not shown.
|
After Width: | Height: | Size: 85 B |
Reference in New Issue
Block a user