Package | Description |
---|---|
org.junit.experimental | |
org.junit.runner |
Provides classes used to describe, collect, run and analyze multiple tests.
|
Modifier and Type | Class and Description |
---|---|
class |
ParallelComputer |
Modifier and Type | Method and Description |
---|---|
static Computer |
ParallelComputer.classes() |
static Computer |
ParallelComputer.methods() |
Modifier and Type | Method and Description |
---|---|
(package private) static Computer |
JUnitCore.defaultComputer() |
static Computer |
Computer.serial()
Returns a new default computer, which runs tests in serial order
|
Modifier and Type | Method and Description |
---|---|
static Request |
Request.classes(Computer computer,
java.lang.Class<?>... classes)
Create a
Request that, when processed, will run all the tests
in a set of classes. |
Request |
JUnitCommandLineParseResult.createRequest(Computer computer)
Creates a
Request . |
Result |
JUnitCore.run(Computer computer,
java.lang.Class<?>... classes)
Run all the tests in
classes . |
static Result |
JUnitCore.runClasses(Computer computer,
java.lang.Class<?>... classes)
Run the tests contained in
classes . |