Uses of Class
org.junit.runner.Request
-
Packages that use Request Package Description org.junit.experimental.max org.junit.experimental.results org.junit.internal.requests Provides implementations ofRequest.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 Modifier and Type Method Description private RequestMaxCore. constructLeafRequest(java.util.List<Description> leaves)RequestMaxCore. sortRequest(Request request)Methods in org.junit.experimental.max with parameters of type Request Modifier and Type Method Description private java.util.List<Description>MaxCore. findLeaves(Request request)ResultMaxCore. run(Request request)Run all the tests contained inrequest.ResultMaxCore. run(Request request, JUnitCore core)Run all the tests contained inrequest.java.util.List<Description>MaxCore. sortedLeavesForTest(Request request)RequestMaxCore. sortRequest(Request request) -
Uses of Request in org.junit.experimental.results
Methods in org.junit.experimental.results with parameters of type Request Modifier and Type Method Description static 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.requests Modifier and Type Class Description classClassRequestclassFilterRequestA filteredRequest.(package private) classMemoizingRequestclassOrderingRequestclassSortingRequestFields in org.junit.internal.requests declared as Request Modifier and Type Field Description private RequestFilterRequest. requestprivate RequestOrderingRequest. requestprivate RequestSortingRequest. requestConstructors in org.junit.internal.requests with parameters of type Request Constructor Description FilterRequest(Request request, Filter filter)Creates a filtered RequestOrderingRequest(Request request, Ordering ordering)SortingRequest(Request request, java.util.Comparator<Description> comparator) -
Uses of Request in org.junit.runner
Methods in org.junit.runner that return Request Modifier and Type Method Description static RequestRequest. aClass(java.lang.Class<?> clazz)Create aRequestthat, when processed, will run all the tests in a class.private RequestJUnitCommandLineParseResult. applyFilterSpecs(Request request)static RequestRequest. classes(java.lang.Class<?>... classes)Create aRequestthat, when processed, will run all the tests in a set of classes with the defaultComputer.static RequestRequest. classes(Computer computer, java.lang.Class<?>... classes)Create aRequestthat, when processed, will run all the tests in a set of classes.static RequestRequest. classWithoutSuiteMethod(java.lang.Class<?> clazz)Create aRequestthat, when processed, will run all the tests in a class.RequestJUnitCommandLineParseResult. createRequest(Computer computer)Creates aRequest.private RequestJUnitCommandLineParseResult. errorReport(java.lang.Throwable cause)static RequestRequest. errorReport(java.lang.Class<?> klass, java.lang.Throwable cause)Creates aRequestthat, when processed, will report an error for the given test class with the given cause.RequestRequest. filterWith(Description desiredDescription)Returns a Request that only runs tests whoseDescriptionmatches the given description.RequestRequest. filterWith(Filter filter)Returns a Request that only contains those tests that should run whenfilteris appliedstatic RequestRequest. method(java.lang.Class<?> clazz, java.lang.String methodName)Create aRequestthat, when processed, will run a single test.RequestRequest. orderWith(Ordering ordering)Returns a Request whose Tests can be run in a certain order, defined byorderingstatic RequestRequest. runner(Runner runner)RequestRequest. sortWith(java.util.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 Request Modifier and Type Method Description private RequestJUnitCommandLineParseResult. applyFilterSpecs(Request request)static FilterFilterFactories. createFilterFromFilterSpec(Request request, java.lang.String filterSpec)Creates aFilter.ResultJUnitCore. run(Request request)Run all the tests contained inrequest.
-