Uses of Class
org.junit.runner.Request
Packages that use Request
Package
Description
Provides implementations of
Request
.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 RequestModifier and TypeMethodDescriptionprivate Request
MaxCore.constructLeafRequest
(List<Description> leaves) MaxCore.sortRequest
(Request request) Methods in org.junit.experimental.max with parameters of type RequestModifier and TypeMethodDescriptionprivate List<Description>
MaxCore.findLeaves
(Request request) Run 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.internal.requests
Subclasses of Request in org.junit.internal.requestsModifier and TypeClassDescriptionclass
final class
A filteredRequest
.(package private) class
class
class
Fields in org.junit.internal.requests declared as RequestModifier and TypeFieldDescriptionprivate final Request
FilterRequest.request
private final Request
OrderingRequest.request
private final Request
SortingRequest.request
Constructors in org.junit.internal.requests with parameters of type RequestModifierConstructorDescriptionFilterRequest
(Request request, Filter filter) Creates a filtered RequestOrderingRequest
(Request request, Ordering ordering) SortingRequest
(Request request, Comparator<Description> comparator) -
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.private Request
JUnitCommandLineParseResult.applyFilterSpecs
(Request request) 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.JUnitCommandLineParseResult.createRequest
(Computer computer) Creates aRequest
.private Request
JUnitCommandLineParseResult.errorReport
(Throwable cause) 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 RequestModifier and TypeMethodDescriptionprivate Request
JUnitCommandLineParseResult.applyFilterSpecs
(Request request) static Filter
FilterFactories.createFilterFromFilterSpec
(Request request, String filterSpec) Creates aFilter
.Run all the tests contained inrequest
.