|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Request | |
---|---|
org.junit.experimental.max | |
org.junit.experimental.results | |
org.junit.runner | Provides classes used to describe, collect, run and analyze multiple tests. |
Uses of Request in org.junit.experimental.max |
---|
Methods in org.junit.experimental.max that return Request | |
---|---|
Request |
MaxCore.sortRequest(Request request)
|
Methods in org.junit.experimental.max with parameters of type Request | |
---|---|
Result |
MaxCore.run(Request request)
Run all the tests contained in request . |
Result |
MaxCore.run(Request request,
JUnitCore core)
Run all the tests contained in request . |
List<Description> |
MaxCore.sortedLeavesForTest(Request request)
|
Request |
MaxCore.sortRequest(Request request)
|
Uses of Request in org.junit.experimental.results |
---|
Methods in org.junit.experimental.results with parameters of type Request | |
---|---|
static PrintableResult |
PrintableResult.testResult(Request request)
The result of running JUnit on Request request |
Uses of Request in org.junit.runner |
---|
Methods in org.junit.runner that return Request | |
---|---|
static Request |
Request.aClass(Class<?> clazz)
Create a Request that, when processed, will run all the tests
in a class. |
static Request |
Request.classes(Class<?>... classes)
Create a Request that, when processed, will run all the tests
in a set of classes with the default Computer . |
static Request |
Request.classes(Computer computer,
Class<?>... classes)
Create a Request that, when processed, will run all the tests
in a set of classes. |
static Request |
Request.classWithoutSuiteMethod(Class<?> clazz)
Create a Request that, when processed, will run all the tests
in a class. |
static Request |
Request.errorReport(Class<?> klass,
Throwable cause)
Creates a Request that, when processed, will report an error for the given
test class with the given cause. |
Request |
Request.filterWith(Description desiredDescription)
Returns a Request that only runs tests whose Description
matches the given description. |
Request |
Request.filterWith(Filter filter)
Returns a Request that only contains those tests that should run when filter is applied |
static Request |
Request.method(Class<?> clazz,
String methodName)
Create a Request that, when processed, will run a single test. |
Request |
Request.orderWith(Ordering ordering)
Returns a Request whose Tests can be run in a certain order, defined by ordering |
static Request |
Request.runner(Runner runner)
|
Request |
Request.sortWith(Comparator<Description> comparator)
Returns a Request whose Tests can be run in a certain order, defined by comparator |
Methods in org.junit.runner with parameters of type Request | |
---|---|
Result |
JUnitCore.run(Request request)
Run all the tests contained in request . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |