Uses of Interface
org.junit.platform.launcher.core.LauncherConfig
-
Packages that use LauncherConfig Package Description org.junit.platform.launcher.core Core support classes for theLauncher
including theLauncherFactory
and theLauncherDiscoveryRequestBuilder
. -
-
Uses of LauncherConfig in org.junit.platform.launcher.core
Classes in org.junit.platform.launcher.core that implement LauncherConfig Modifier and Type Class Description (package private) class
DefaultLauncherConfig
Default implementation of theLauncherConfig
API.Fields in org.junit.platform.launcher.core declared as LauncherConfig Modifier and Type Field Description static LauncherConfig
LauncherConfig. DEFAULT
The defaultLauncherConfig
which uses automatic registration for test engines, supported listeners, and post-discovery filters.Methods in org.junit.platform.launcher.core that return LauncherConfig Modifier and Type Method Description LauncherConfig
LauncherConfig.Builder. build()
Build theLauncherConfig
that has been configured via this builder.Methods in org.junit.platform.launcher.core with parameters of type LauncherConfig Modifier and Type Method Description private static java.util.List<PostDiscoveryFilter>
LauncherFactory. collectPostDiscoveryFilters(LauncherConfig config)
private static java.util.Set<TestEngine>
LauncherFactory. collectTestEngines(LauncherConfig config)
static Launcher
LauncherFactory. create(LauncherConfig config)
Factory method for creating a newLauncher
using the suppliedLauncherConfig
.private static DefaultLauncher
LauncherFactory. createDefaultLauncher(LauncherConfig config)
private static LauncherSessionListener
LauncherFactory. createLauncherSessionListener(LauncherConfig config)
static LauncherSession
LauncherFactory. openSession(LauncherConfig config)
Factory method for opening a newLauncherSession
using the suppliedLauncherConfig
.private static void
LauncherFactory. registerLauncherDiscoveryListeners(LauncherConfig config, Launcher launcher)
private static void
LauncherFactory. registerTestExecutionListeners(LauncherConfig config, Launcher launcher)
-