junit.runner
Interface TestRunListener
-
public interface TestRunListener
A 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.
STATUS_ERROR
static final int STATUS_ERROR
-
See Also:
-
Constant Field Values
STATUS_FAILURE
static final int STATUS_FAILURE
-
See Also:
-
Constant Field Values
testRunStarted
void testRunStarted(String testSuiteName,
int testCount)
-
testRunEnded
void testRunEnded(long elapsedTime)
-
testRunStopped
void testRunStopped(long elapsedTime)
-
testStarted
void testStarted(String testName)
-
testEnded
void testEnded(String testName)
-
testFailed
void testFailed(int status,
String testName,
String trace)
-
Copyright © 2002–2021
JUnit. All rights reserved.