Uses of Class
org.junit.runner.Runner
-
Packages that use Runner Package Description org.junit.experimental org.junit.experimental.categories org.junit.experimental.runners org.junit.experimental.theories org.junit.internal.builders org.junit.internal.requests Provides implementations ofRequest.org.junit.internal.runners Provides implementations ofRunnerorg.junit.runner Provides classes used to describe, collect, run and analyze multiple tests.org.junit.runners Provides standardRunnerimplementations.org.junit.runners.model org.junit.runners.parameterized -
-
Uses of Runner in org.junit.experimental
Methods in org.junit.experimental that return Runner Modifier and Type Method Description protected RunnerParallelComputer. getRunner(RunnerBuilder builder, java.lang.Class<?> testClass)RunnerParallelComputer. getSuite(RunnerBuilder builder, java.lang.Class<?>[] classes) -
Uses of Runner in org.junit.experimental.categories
Subclasses of Runner in org.junit.experimental.categories Modifier and Type Class Description classCategoriesFrom a given set of test classes, runs only the classes and methods that are annotated with either the category given with the @IncludeCategory annotation, or a subtype of that category. -
Uses of Runner in org.junit.experimental.runners
Subclasses of Runner in org.junit.experimental.runners Modifier and Type Class Description classEnclosedIf you put tests in inner classes, Ant, for example, won't find them. -
Uses of Runner in org.junit.experimental.theories
Subclasses of Runner in org.junit.experimental.theories Modifier and Type Class Description classTheoriesThe Theories runner allows to test a certain functionality against a subset of an infinite set of data points. -
Uses of Runner in org.junit.internal.builders
Subclasses of Runner in org.junit.internal.builders Modifier and Type Class Description classIgnoredClassRunnerMethods in org.junit.internal.builders that return Runner Modifier and Type Method Description RunnerAnnotatedBuilder. buildRunner(java.lang.Class<? extends Runner> runnerClass, java.lang.Class<?> testClass)RunnerAllDefaultPossibilitiesBuilder. runnerForClass(java.lang.Class<?> testClass)RunnerAnnotatedBuilder. runnerForClass(java.lang.Class<?> testClass)RunnerIgnoredBuilder. runnerForClass(java.lang.Class<?> testClass)RunnerJUnit3Builder. runnerForClass(java.lang.Class<?> testClass)RunnerJUnit4Builder. runnerForClass(java.lang.Class<?> testClass)RunnerNullBuilder. runnerForClass(java.lang.Class<?> each)RunnerSuiteMethodBuilder. runnerForClass(java.lang.Class<?> each)Method parameters in org.junit.internal.builders with type arguments of type Runner Modifier and Type Method Description RunnerAnnotatedBuilder. buildRunner(java.lang.Class<? extends Runner> runnerClass, java.lang.Class<?> testClass) -
Uses of Runner in org.junit.internal.requests
Methods in org.junit.internal.requests that return Runner Modifier and Type Method Description protected RunnerClassRequest. createRunner()protected RunnerOrderingRequest. createRunner()RunnerFilterRequest. getRunner()RunnerSortingRequest. getRunner() -
Uses of Runner in org.junit.internal.runners
Subclasses of Runner in org.junit.internal.runners Modifier and Type Class Description classErrorReportingRunnerclassJUnit38ClassRunnerclassJUnit4ClassRunnerDeprecated.Included for backwards compatibility with JUnit 4.4.classSuiteMethodRunner for use with JUnit 3.8.x-style AllTests classes (those that only implement a staticsuite()method). -
Uses of Runner in org.junit.runner
Methods in org.junit.runner that return Runner Modifier and Type Method Description protected RunnerComputer. getRunner(RunnerBuilder builder, java.lang.Class<?> testClass)Create a single-class runner fortestClass, usingbuilderabstract RunnerRequest. getRunner()Returns aRunnerfor this RequestRunnerComputer. getSuite(RunnerBuilder builder, java.lang.Class<?>[] classes)Create a suite forclasses, building Runners withbuilder.Methods in org.junit.runner that return types with arguments of type Runner Modifier and Type Method Description java.lang.Class<? extends Runner>value()Methods in org.junit.runner with parameters of type Runner Modifier and Type Method Description ResultJUnitCore. run(Runner runner)Do not use.static RequestRequest. runner(Runner runner) -
Uses of Runner in org.junit.runners
Subclasses of Runner in org.junit.runners Modifier and Type Class Description classAllTestsRunner for use with JUnit 3.8.x-style AllTests classes (those that only implement a staticsuite()method).classBlockJUnit4ClassRunnerImplements the JUnit 4 standard test case class model, as defined by the annotations in the org.junit package.classJUnit4Aliases the current default JUnit 4 class runner, for future-proofing.classParameterizedThe custom runnerParameterizedimplements parameterized tests.classParentRunner<T>Provides most of the functionality specific to a Runner that implements a "parent node" in the test tree, with children defined by objects of some data typeT.classSuiteUsingSuiteas a runner allows you to manually build a suite containing tests from many classes.Methods in org.junit.runners that return Runner Modifier and Type Method Description static RunnerSuite. emptySuite()Returns an empty suite.Methods in org.junit.runners that return types with arguments of type Runner Modifier and Type Method Description protected java.util.List<Runner>Suite. getChildren()Methods in org.junit.runners with parameters of type Runner Modifier and Type Method Description protected DescriptionSuite. describeChild(Runner child)protected voidSuite. runChild(Runner runner, RunNotifier notifier)Constructor parameters in org.junit.runners with type arguments of type Runner Constructor Description Suite(java.lang.Class<?> klass, java.util.List<Runner> runners)Called by this class and subclasses once the runners making up the suite have been determined -
Uses of Runner in org.junit.runners.model
Methods in org.junit.runners.model that return Runner Modifier and Type Method Description abstract RunnerRunnerBuilder. runnerForClass(java.lang.Class<?> testClass)Override to calculate the correct runner for a test class at runtime.RunnerRunnerBuilder. safeRunnerForClass(java.lang.Class<?> testClass)Always returns a runner for the given test class.Methods in org.junit.runners.model that return types with arguments of type Runner Modifier and Type Method Description java.util.List<Runner>RunnerBuilder. runners(java.lang.Class<?> parent, java.lang.Class<?>[] children)Constructs and returns a list of Runners, one for each child class inchildren.java.util.List<Runner>RunnerBuilder. runners(java.lang.Class<?> parent, java.util.List<java.lang.Class<?>> children) -
Uses of Runner in org.junit.runners.parameterized
Subclasses of Runner in org.junit.runners.parameterized Modifier and Type Class Description classBlockJUnit4ClassRunnerWithParametersABlockJUnit4ClassRunnerwith parameters support.Methods in org.junit.runners.parameterized that return Runner Modifier and Type Method Description RunnerBlockJUnit4ClassRunnerWithParametersFactory. createRunnerForTestWithParameters(TestWithParameters test)RunnerParametersRunnerFactory. createRunnerForTestWithParameters(TestWithParameters test)Returns a runner for the specifiedTestWithParameters.
-