Uses of Class
org.junit.runner.Runner
Packages that use Runner
Package
Description
Provides JUnit v3.x core classes.
Provides implementations of
Request
.Provides implementations of
Runner
Provides classes used to describe, collect, run and analyze multiple tests.
Provides standard
Runner
implementations.-
Uses of Runner in junit.framework
Fields in junit.framework declared as Runner -
Uses of Runner in org.junit.experimental
Methods in org.junit.experimental that return RunnerModifier and TypeMethodDescriptionprotected Runner
ParallelComputer.getRunner
(RunnerBuilder builder, Class<?> testClass) ParallelComputer.getSuite
(RunnerBuilder builder, Class<?>[] classes) private static Runner
ParallelComputer.parallelize
(Runner runner) Methods in org.junit.experimental with parameters of type RunnerModifier and TypeMethodDescriptionprivate static Runner
ParallelComputer.parallelize
(Runner runner) -
Uses of Runner in org.junit.experimental.categories
Subclasses of Runner in org.junit.experimental.categoriesModifier and TypeClassDescriptionclass
From 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.max
Methods in org.junit.experimental.max that return Runner -
Uses of Runner in org.junit.experimental.runners
Subclasses of Runner in org.junit.experimental.runnersModifier and TypeClassDescriptionclass
If 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.theoriesModifier and TypeClassDescriptionclass
The 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.buildersMethods in org.junit.internal.builders that return RunnerModifier and TypeMethodDescriptionAnnotatedBuilder.buildRunner
(Class<? extends Runner> runnerClass, Class<?> testClass) AllDefaultPossibilitiesBuilder.runnerForClass
(Class<?> testClass) AnnotatedBuilder.runnerForClass
(Class<?> testClass) IgnoredBuilder.runnerForClass
(Class<?> testClass) JUnit3Builder.runnerForClass
(Class<?> testClass) JUnit4Builder.runnerForClass
(Class<?> testClass) NullBuilder.runnerForClass
(Class<?> each) SuiteMethodBuilder.runnerForClass
(Class<?> each) Method parameters in org.junit.internal.builders with type arguments of type RunnerModifier and TypeMethodDescriptionAnnotatedBuilder.buildRunner
(Class<? extends Runner> runnerClass, Class<?> testClass) -
Uses of Runner in org.junit.internal.requests
Fields in org.junit.internal.requests declared as RunnerMethods in org.junit.internal.requests that return RunnerModifier and TypeMethodDescriptionprotected Runner
ClassRequest.createRunner()
protected abstract Runner
MemoizingRequest.createRunner()
Creates theRunner
to return fromMemoizingRequest.getRunner()
.protected Runner
OrderingRequest.createRunner()
FilterRequest.getRunner()
final Runner
MemoizingRequest.getRunner()
SortingRequest.getRunner()
ClassRequest.CustomSuiteMethodBuilder.runnerForClass
(Class<?> testClass) -
Uses of Runner in org.junit.internal.runners
Subclasses of Runner in org.junit.internal.runnersModifier and TypeClassDescriptionclass
class
class
Deprecated.Included for backwards compatibility with JUnit 4.4.class
Runner 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 RunnerModifier and TypeMethodDescriptionprotected Runner
Computer.getRunner
(RunnerBuilder builder, Class<?> testClass) Create a single-class runner fortestClass
, usingbuilder
abstract Runner
Request.getRunner()
Returns aRunner
for this RequestComputer.getSuite
(RunnerBuilder builder, Class<?>[] classes) Create a suite forclasses
, building Runners withbuilder
.Methods in org.junit.runner with parameters of type Runner -
Uses of Runner in org.junit.runners
Subclasses of Runner in org.junit.runnersModifier and TypeClassDescriptionclass
Runner for use with JUnit 3.8.x-style AllTests classes (those that only implement a staticsuite()
method).class
Implements the JUnit 4 standard test case class model, as defined by the annotations in the org.junit package.final class
Aliases the current default JUnit 4 class runner, for future-proofing.class
The custom runnerParameterized
implements parameterized tests.private static class
class
ParentRunner<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
.class
UsingSuite
as a runner allows you to manually build a suite containing tests from many classes.Fields in org.junit.runners declared as RunnerModifier and TypeFieldDescriptionprivate final Runner
Parameterized.RunnersFactory.runnerOverride
Fields in org.junit.runners with type parameters of type RunnerMethods in org.junit.runners that return RunnerMethods in org.junit.runners that return types with arguments of type RunnerModifier and TypeMethodDescriptionParameterized.RunnersFactory.createRunners()
Parameterized.RunnersFactory.createRunnersForParameters
(Iterable<Object> allParameters, String namePattern, ParametersRunnerFactory runnerFactory) Suite.getChildren()
Methods in org.junit.runners with parameters of type RunnerModifier and TypeMethodDescriptionprotected Description
Suite.describeChild
(Runner child) protected void
Suite.runChild
(Runner runner, RunNotifier notifier) Constructor parameters in org.junit.runners with type arguments of type Runner -
Uses of Runner in org.junit.runners.model
Methods in org.junit.runners.model that return RunnerModifier and TypeMethodDescriptionabstract Runner
RunnerBuilder.runnerForClass
(Class<?> testClass) Override to calculate the correct runner for a test class at runtime.RunnerBuilder.safeRunnerForClass
(Class<?> testClass) Always returns a runner for the given test class.Methods in org.junit.runners.model that return types with arguments of type RunnerModifier and TypeMethodDescriptionConstructs and returns a list of Runners, one for each child class inchildren
.Methods in org.junit.runners.model with parameters of type Runner -
Uses of Runner in org.junit.runners.parameterized
Subclasses of Runner in org.junit.runners.parameterizedMethods in org.junit.runners.parameterized that return RunnerModifier and TypeMethodDescriptionBlockJUnit4ClassRunnerWithParametersFactory.createRunnerForTestWithParameters
(TestWithParameters test) ParametersRunnerFactory.createRunnerForTestWithParameters
(TestWithParameters test) Returns a runner for the specifiedTestWithParameters
.