Uses of Class
org.junit.runners.model.RunnerBuilder
-
Packages that use RunnerBuilder Package Description org.junit.experimental org.junit.experimental.categories org.junit.experimental.runners org.junit.internal.builders org.junit.runner Provides classes used to describe, collect, run and analyze multiple tests.org.junit.runners Provides standardRunner
implementations. -
-
Uses of RunnerBuilder in org.junit.experimental
Methods in org.junit.experimental with parameters of type RunnerBuilder Modifier and Type Method Description protected Runner
ParallelComputer. getRunner(RunnerBuilder builder, java.lang.Class<?> testClass)
Runner
ParallelComputer. getSuite(RunnerBuilder builder, java.lang.Class<?>[] classes)
-
Uses of RunnerBuilder in org.junit.experimental.categories
Constructors in org.junit.experimental.categories with parameters of type RunnerBuilder Constructor Description Categories(java.lang.Class<?> klass, RunnerBuilder builder)
-
Uses of RunnerBuilder in org.junit.experimental.runners
Constructors in org.junit.experimental.runners with parameters of type RunnerBuilder Constructor Description Enclosed(java.lang.Class<?> klass, RunnerBuilder builder)
Only called reflectively. -
Uses of RunnerBuilder in org.junit.internal.builders
Subclasses of RunnerBuilder in org.junit.internal.builders Modifier and Type Class Description class
AllDefaultPossibilitiesBuilder
class
AnnotatedBuilder
TheAnnotatedBuilder
is a strategy for constructing runners for test class that have been annotated with the@RunWith
annotation.class
IgnoredBuilder
class
JUnit3Builder
class
JUnit4Builder
class
NullBuilder
class
SuiteMethodBuilder
Fields in org.junit.internal.builders declared as RunnerBuilder Modifier and Type Field Description private RunnerBuilder
AnnotatedBuilder. suiteBuilder
Methods in org.junit.internal.builders that return RunnerBuilder Modifier and Type Method Description protected RunnerBuilder
AllDefaultPossibilitiesBuilder. suiteMethodBuilder()
Constructors in org.junit.internal.builders with parameters of type RunnerBuilder Constructor Description AnnotatedBuilder(RunnerBuilder suiteBuilder)
-
Uses of RunnerBuilder in org.junit.runner
Methods in org.junit.runner with parameters of type RunnerBuilder Modifier and Type Method Description protected Runner
Computer. getRunner(RunnerBuilder builder, java.lang.Class<?> testClass)
Create a single-class runner fortestClass
, usingbuilder
Runner
Computer. getSuite(RunnerBuilder builder, java.lang.Class<?>[] classes)
Create a suite forclasses
, building Runners withbuilder
. -
Uses of RunnerBuilder in org.junit.runners
Constructors in org.junit.runners with parameters of type RunnerBuilder Constructor Description Suite(java.lang.Class<?> klass, RunnerBuilder builder)
Called reflectively on classes annotated with@RunWith(Suite.class)
Suite(RunnerBuilder builder, java.lang.Class<?>[] classes)
Call this when there is no single root class (for example, multiple class names passed on the command line toJUnitCore
Suite(RunnerBuilder builder, java.lang.Class<?> klass, java.lang.Class<?>[] suiteClasses)
Called by this class and subclasses once the classes making up the suite have been determined
-