org.junit.runner |
Provides classes used to describe, collect, run and analyze multiple tests. |
Java Source File Name | Type | Comment |
Description.java | Class | A Description describes a test which is to be run or has been run. |
JUnitCore.java | Class | JUnitCore is a facade for running tests. |
package-info.java | | |
Request.java | Class | A Request is an abstract description of tests to be run. |
Result.java | Class | A Result collects and summarizes information from running multiple
tests. |
Runner.java | Class | A Runner runs tests and notifies a
org.junit.runner.notification.RunNotifier of significant events as it does so. |
RunWith.java | Annotation | When a class is annotated with @RunWith or extends a class annotated
with @RunWith , JUnit will invoke the class it references to run the
tests in that class instead of the runner built into JUnit. |