Uses of Class
org.junit.runner.Request
Packages that use Request
Package
Description
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 RequestMethods in org.junit.experimental.max with parameters of type RequestModifier and TypeMethodDescriptionRun all the tests contained inrequest
.Run all the tests contained inrequest
.MaxCore.sortedLeavesForTest
(Request request) MaxCore.sortRequest
(Request request) -
Uses of Request in org.junit.experimental.results
Methods in org.junit.experimental.results with parameters of type RequestModifier and TypeMethodDescriptionstatic PrintableResult
PrintableResult.testResult
(Request request) The result of running JUnit on Requestrequest
-
Uses of Request in org.junit.runner
Methods in org.junit.runner that return RequestModifier and TypeMethodDescriptionstatic Request
Create aRequest
that, when processed, will run all the tests in a class.static Request
Create aRequest
that, when processed, will run all the tests in a set of classes with the defaultComputer
.static Request
Create aRequest
that, when processed, will run all the tests in a set of classes.static Request
Request.classWithoutSuiteMethod
(Class<?> clazz) Create aRequest
that, when processed, will run all the tests in a class.static Request
Request.errorReport
(Class<?> klass, Throwable cause) Creates aRequest
that, when processed, will report an error for the given test class with the given cause.Request.filterWith
(Description desiredDescription) Returns a Request that only runs tests whoseDescription
matches the given description.Request.filterWith
(Filter filter) Returns a Request that only contains those tests that should run whenfilter
is appliedstatic Request
Create aRequest
that, when processed, will run a single test.Returns a Request whose Tests can be run in a certain order, defined byordering
static Request
Request.sortWith
(Comparator<Description> comparator) Returns a Request whose Tests can be run in a certain order, defined bycomparator
Methods in org.junit.runner with parameters of type Request