public interface TestStateListenerType
| Modifier and Type | Method and Description |
|---|---|
void |
testStateCreated(ClassName class_name,
TestName test,
TestState state)
A test named
test in class class_name has been
added with state state. |
void |
testStateRunFinished()
The tests have finished running.
|
void |
testStateRunStarted(long count)
The tests have started running, and
count tests will be
executed. |
void |
testStateStarted(ClassName class_name,
TestName test,
long n)
A test named
test in class class_name has
started running. |
void |
testStateUpdated(ClassName class_name,
TestName test,
TestState state)
The state of the test named
test in class
class_name has been updated to state state. |
void testStateRunStarted(long count)
count tests will be
executed.count - The number of tests.void testStateCreated(ClassName class_name, TestName test, TestState state)
test in class class_name has been
added with state state.class_name - The class name.test - The test name.state - The test state.void testStateStarted(ClassName class_name, TestName test, long n)
test in class class_name has
started running.class_name - The class name.test - The test name.n - The test number.void testStateUpdated(ClassName class_name, TestName test, TestState state)
test in class
class_name has been updated to state state.class_name - The class name.test - The test name.state - The test state.void testStateRunFinished()
Copyright © 2015 <code@io7m.com> http://io7m.com