Package junit.runner
Interface TestRunListener
-
public interface TestRunListenerA listener interface for observing the execution of a test run. Unlike TestListener, this interface using only primitive objects, making it suitable for remote test execution.
-
-
Field Summary
Fields Modifier and Type Field Description static intSTATUS_ERRORstatic intSTATUS_FAILURE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtestEnded(String testName)voidtestFailed(int status, String testName, String trace)voidtestRunEnded(long elapsedTime)voidtestRunStarted(String testSuiteName, int testCount)voidtestRunStopped(long elapsedTime)voidtestStarted(String testName)
-
-
-
Field Detail
-
STATUS_ERROR
static final int STATUS_ERROR
- See Also:
- Constant Field Values
-
STATUS_FAILURE
static final int STATUS_FAILURE
- See Also:
- Constant Field Values
-
-