Uses of Interface
org.junit.platform.launcher.Launcher
-
Packages that use Launcher Package Description org.junit.platform.console.tasks Internal execution tasks for JUnit's console launcher.org.junit.platform.launcher Public API for configuring and launching test plans.org.junit.platform.launcher.core Core support classes for theLauncher
including theLauncherFactory
and theLauncherDiscoveryRequestBuilder
.org.junit.platform.runner Runner
and annotations for configuring and executing tests on the JUnit Platform in a JUnit 4 environment. -
-
Uses of Launcher in org.junit.platform.console.tasks
Fields in org.junit.platform.console.tasks with type parameters of type Launcher Modifier and Type Field Description private java.util.function.Supplier<Launcher>
ConsoleTestExecutor. launcherSupplier
Methods in org.junit.platform.console.tasks with parameters of type Launcher Modifier and Type Method Description private SummaryGeneratingListener
ConsoleTestExecutor. registerListeners(java.io.PrintWriter out, java.util.Optional<java.nio.file.Path> reportsDir, Launcher launcher)
Constructor parameters in org.junit.platform.console.tasks with type arguments of type Launcher Constructor Description ConsoleTestExecutor(TestDiscoveryOptions discoveryOptions, TestConsoleOutputOptions outputOptions, java.util.function.Supplier<Launcher> launcherSupplier)
-
Uses of Launcher in org.junit.platform.launcher
Methods in org.junit.platform.launcher that return Launcher Modifier and Type Method Description Launcher
LauncherSession. getLauncher()
Get theLauncher
associated with this session. -
Uses of Launcher in org.junit.platform.launcher.core
Classes in org.junit.platform.launcher.core that implement Launcher Modifier and Type Class Description (package private) class
DefaultLauncher
Default implementation of theLauncher
API.private static class
DefaultLauncherSession.ClosedLauncher
(package private) class
DelegatingLauncher
(package private) class
InterceptingLauncher
(package private) class
SessionPerRequestLauncher
Fields in org.junit.platform.launcher.core declared as Launcher Modifier and Type Field Description protected Launcher
DelegatingLauncher. delegate
Fields in org.junit.platform.launcher.core with type parameters of type Launcher Modifier and Type Field Description private java.util.function.Supplier<Launcher>
SessionPerRequestLauncher. launcherSupplier
Methods in org.junit.platform.launcher.core that return Launcher Modifier and Type Method Description static Launcher
LauncherFactory. create()
static Launcher
LauncherFactory. create(LauncherConfig config)
Factory method for creating a newLauncher
using the suppliedLauncherConfig
.Launcher
DefaultLauncherSession. getLauncher()
Methods in org.junit.platform.launcher.core with parameters of type Launcher Modifier and Type Method Description private static void
LauncherFactory. registerLauncherDiscoveryListeners(LauncherConfig config, Launcher launcher)
private static void
LauncherFactory. registerTestExecutionListeners(LauncherConfig config, Launcher launcher, LauncherConfigurationParameters configurationParameters)
Constructors in org.junit.platform.launcher.core with parameters of type Launcher Constructor Description DelegatingLauncher(Launcher delegate)
InterceptingLauncher(Launcher delegate, LauncherInterceptor interceptor)
Constructor parameters in org.junit.platform.launcher.core with type arguments of type Launcher Constructor Description SessionPerRequestLauncher(java.util.function.Supplier<Launcher> launcherSupplier, java.util.function.Supplier<LauncherSessionListener> sessionListenerSupplier, java.util.function.Supplier<java.util.List<LauncherInterceptor>> interceptorFactory)
-
Uses of Launcher in org.junit.platform.runner
Fields in org.junit.platform.runner declared as Launcher Modifier and Type Field Description private Launcher
JUnitPlatform. launcher
Deprecated.Constructors in org.junit.platform.runner with parameters of type Launcher Constructor Description JUnitPlatform(java.lang.Class<?> testClass, Launcher launcher)
Deprecated.
-