Package org.eclipse.jdt.junit
Interface ITestRunListener
Deprecated.
A listener interface for observing the execution of a test run.
Clients contributing to the
org.eclipse.jdt.junit.testRunListener
extension point implement this interface.
- Since:
- 2.1
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intDeprecated.static final intDeprecated.static final intDeprecated. -
Method Summary
Modifier and TypeMethodDescriptionvoidDeprecated.voidtestFailed(int status, String testId, String testName, String trace) Deprecated.voidDeprecated.voidtestRunEnded(long elapsedTime) Deprecated.voidtestRunStarted(int testCount) Deprecated.voidtestRunStopped(long elapsedTime) Deprecated.voidDeprecated.voidtestStarted(String testId, String testName) Deprecated.
-
Field Details
-
STATUS_OK
Deprecated.Status constant indicating that a test passed (constant value 0).- See Also:
-
STATUS_ERROR
Deprecated.Status constant indicating that a test had an error an unanticipated exception (constant value 1).- See Also:
-
STATUS_FAILURE
Deprecated.Status constant indicating that a test failed an assertion (constant value 2).- See Also:
-
-
Method Details
-
testRunStarted
Deprecated.A test run has started.- Parameters:
testCount- the number of individual tests that will be run
-
testRunEnded
Deprecated.A test run has ended.- Parameters:
elapsedTime- the total elapsed time of the test run
-
testRunStopped
Deprecated.A test run has been stopped prematurely.- Parameters:
elapsedTime- the time elapsed before the test run was stopped
-
testStarted
Deprecated.An individual test has started.- Parameters:
testId- a unique Id identifying the testtestName- the name of the test that started
-
testEnded
Deprecated.An individual test has ended.- Parameters:
testId- a unique Id identifying the testtestName- the name of the test that ended
-
testFailed
Deprecated.An individual test has failed with a stack trace.- Parameters:
status- the outcome of the test; one ofSTATUS_ERRORorSTATUS_FAILUREtestId- a unique Id identifying the testtestName- the name of the test that failedtrace- the stack trace
-
testRunTerminated
Deprecated.The VM instance performing the tests has terminated. -
testReran
@Deprecated void testReran(String testId, String testClass, String testName, int status, String trace) Deprecated.An individual test has been rerun.- Parameters:
testId- a unique Id identifying the testtestClass- the name of the test class that was reruntestName- the name of the test that was rerunstatus- the outcome of the test that was rerun; one ofSTATUS_OK,STATUS_ERROR, orSTATUS_FAILUREtrace- the stack trace in the case of abnormal termination, or the empty string if none
-
TestRunListener