Package junit.swingui
Interface TestRunContext
-
- All Known Implementing Classes:
TestRunner
public interface TestRunContextThe interface for accessing the Test run context. Test run views should use this interface rather than accessing the TestRunner directly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.swing.ListModelgetFailures()Returns the failure modelvoidhandleTestSelected(Test test)Handles the selection of a Test.
-
-
-
Method Detail
-
handleTestSelected
void handleTestSelected(Test test)
Handles the selection of a Test.
-
getFailures
javax.swing.ListModel getFailures()
Returns the failure model
-
-