Uses of Interface
org.junit.platform.launcher.LauncherSessionListener
-
Packages that use LauncherSessionListener Package Description 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.launcher.listeners.session CommonLauncherSessionListener
implementations and factory methods. -
-
Uses of LauncherSessionListener in org.junit.platform.launcher
Fields in org.junit.platform.launcher declared as LauncherSessionListener Modifier and Type Field Description static LauncherSessionListener
LauncherSessionListener. NOOP
No-op implementation ofLauncherSessionListener
-
Uses of LauncherSessionListener in org.junit.platform.launcher.core
Fields in org.junit.platform.launcher.core declared as LauncherSessionListener Modifier and Type Field Description private LauncherSessionListener
DefaultLauncherSession. listener
Fields in org.junit.platform.launcher.core with type parameters of type LauncherSessionListener Modifier and Type Field Description private java.util.Collection<LauncherSessionListener>
DefaultLauncherConfig. additionalLauncherSessionListeners
private java.util.Collection<LauncherSessionListener>
LauncherConfig.Builder. sessionListeners
private java.util.function.Supplier<LauncherSessionListener>
SessionPerRequestLauncher. sessionListenerSupplier
Methods in org.junit.platform.launcher.core that return LauncherSessionListener Modifier and Type Method Description private static LauncherSessionListener
LauncherFactory. createLauncherSessionListener(LauncherConfig config)
(package private) LauncherSessionListener
DefaultLauncherSession. getListener()
Methods in org.junit.platform.launcher.core that return types with arguments of type LauncherSessionListener Modifier and Type Method Description (package private) static ListenerRegistry<LauncherSessionListener>
ListenerRegistry. forLauncherSessionListeners()
java.util.Collection<LauncherSessionListener>
DefaultLauncherConfig. getAdditionalLauncherSessionListeners()
java.util.Collection<LauncherSessionListener>
LauncherConfig. getAdditionalLauncherSessionListeners()
Get the collection of additional launcher session listeners that should be added to theLauncher
.Methods in org.junit.platform.launcher.core with parameters of type LauncherSessionListener Modifier and Type Method Description LauncherConfig.Builder
LauncherConfig.Builder. addLauncherSessionListeners(LauncherSessionListener... listeners)
Add all of the supplied launcher session listeners to the configuration.Constructor parameters in org.junit.platform.launcher.core with type arguments of type LauncherSessionListener Constructor Description DefaultLauncherSession(java.util.List<LauncherInterceptor> interceptors, java.util.function.Supplier<LauncherSessionListener> listenerSupplier, java.util.function.Supplier<Launcher> launcherSupplier)
-
Uses of LauncherSessionListener in org.junit.platform.launcher.listeners.session
Classes in org.junit.platform.launcher.listeners.session that implement LauncherSessionListener Modifier and Type Class Description (package private) class
CompositeLauncherSessionListener
Fields in org.junit.platform.launcher.listeners.session with type parameters of type LauncherSessionListener Modifier and Type Field Description private java.util.List<LauncherSessionListener>
CompositeLauncherSessionListener. listeners
Methods in org.junit.platform.launcher.listeners.session that return LauncherSessionListener Modifier and Type Method Description static LauncherSessionListener
LauncherSessionListeners. composite(java.util.List<LauncherSessionListener> listeners)
Method parameters in org.junit.platform.launcher.listeners.session with type arguments of type LauncherSessionListener Modifier and Type Method Description static LauncherSessionListener
LauncherSessionListeners. composite(java.util.List<LauncherSessionListener> listeners)
Constructor parameters in org.junit.platform.launcher.listeners.session with type arguments of type LauncherSessionListener Constructor Description CompositeLauncherSessionListener(java.util.List<LauncherSessionListener> listeners)
-