Package org.junit.runner
package org.junit.runner
Provides classes used to describe, collect, run and analyze multiple tests.
- Since:
- 4.0
-
ClassDescriptionRepresents a strategy for computing runners and suites.Represents an object that can describe itselfA
Descriptiondescribes a test which is to be run or has been run.Utility class whose methods create aFilterFactory.Extend this class to create a factory that createsFilter.Exception thrown if theFiltercannot be created.Exception used if there's a problem parsing the command line.JUnitCoreis a facade for running tests.When a test class is annotated with@OrderWithor extends a class annotated with@OrderWith, JUnit will order the tests in the test class (and child test classes, if any) using the ordering defined by theOrderingclass.Validates that there are no errors in the use of theOrderWithannotation.ARequestis an abstract description of tests to be run.AResultcollects and summarizes information from running multiple tests.Represents the serialized output ofResult.ARunnerruns tests and notifies aRunNotifierof significant events as it does so.When a class is annotated with@RunWithor 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.