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
RunnerProvides 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 RunnerParallelComputer.getRunner(RunnerBuilder builder, Class<?> testClass) ParallelComputer.getSuite(RunnerBuilder builder, Class<?>[] classes) private static RunnerParallelComputer.parallelize(Runner runner) Methods in org.junit.experimental with parameters of type RunnerModifier and TypeMethodDescriptionprivate static RunnerParallelComputer.parallelize(Runner runner) -
Uses of Runner in org.junit.experimental.categories
Subclasses of Runner in org.junit.experimental.categoriesModifier and TypeClassDescriptionclassFrom 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 TypeClassDescriptionclassIf 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 TypeClassDescriptionclassThe 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 RunnerClassRequest.createRunner()protected abstract RunnerMemoizingRequest.createRunner()Creates theRunnerto return fromMemoizingRequest.getRunner().protected RunnerOrderingRequest.createRunner()FilterRequest.getRunner()final RunnerMemoizingRequest.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 TypeClassDescriptionclassclassclassDeprecated.Included for backwards compatibility with JUnit 4.4.classRunner 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 RunnerComputer.getRunner(RunnerBuilder builder, Class<?> testClass) Create a single-class runner fortestClass, usingbuilderabstract RunnerRequest.getRunner()Returns aRunnerfor 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 TypeClassDescriptionclassRunner for use with JUnit 3.8.x-style AllTests classes (those that only implement a staticsuite()method).classImplements the JUnit 4 standard test case class model, as defined by the annotations in the org.junit package.final classAliases the current default JUnit 4 class runner, for future-proofing.classThe custom runnerParameterizedimplements parameterized tests.private static classclassParentRunner<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.classUsingSuiteas 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 RunnerParameterized.RunnersFactory.runnerOverrideFields 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 DescriptionSuite.describeChild(Runner child) protected voidSuite.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 RunnerRunnerBuilder.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.