org.junit.runner.notification |
Provides information about a test run. |
Java Source File Name | Type | Comment |
Failure.java | Class | A Failure holds a description of the failed test and the
exception that was thrown while running it. |
package-info.java | | |
RunListener.java | Class | If you need to respond to the events during a test run, extend RunListener
and override the appropriate methods. |
RunNotifier.java | Class | If you write custom runners, you may need to notify JUnit of your progress running tests.
Do this by invoking the RunNotifier passed to your implementation of
org.junit.runner.Runner.run(RunNotifier) . |
StoppedByUserException.java | Class | Thrown when a user has requested that the test run stop. |