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 RequestMaxCore.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 PrintableResultPrintableResult.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 TypeClassDescriptionclassfinal classA filteredRequest.(package private) classclassclassFields in org.junit.internal.requests declared as RequestModifier and TypeFieldDescriptionprivate final RequestFilterRequest.requestprivate final RequestOrderingRequest.requestprivate final RequestSortingRequest.requestConstructors 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 RequestCreate aRequestthat, when processed, will run all the tests in a class.private RequestJUnitCommandLineParseResult.applyFilterSpecs(Request request) static RequestCreate aRequestthat, when processed, will run all the tests in a set of classes with the defaultComputer.static RequestCreate aRequestthat, when processed, will run all the tests in a set of classes.static RequestRequest.classWithoutSuiteMethod(Class<?> clazz) Create aRequestthat, when processed, will run all the tests in a class.JUnitCommandLineParseResult.createRequest(Computer computer) Creates aRequest.private RequestJUnitCommandLineParseResult.errorReport(Throwable cause) static RequestRequest.errorReport(Class<?> klass, Throwable cause) Creates aRequestthat, 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 whoseDescriptionmatches the given description.Request.filterWith(Filter filter) Returns a Request that only contains those tests that should run whenfilteris appliedstatic RequestCreate aRequestthat, when processed, will run a single test.Returns a Request whose Tests can be run in a certain order, defined byorderingstatic RequestRequest.sortWith(Comparator<Description> comparator) Returns a Request whose Tests can be run in a certain order, defined bycomparatorMethods in org.junit.runner with parameters of type RequestModifier and TypeMethodDescriptionprivate RequestJUnitCommandLineParseResult.applyFilterSpecs(Request request) static FilterFilterFactories.createFilterFromFilterSpec(Request request, String filterSpec) Creates aFilter.Run all the tests contained inrequest.