Uses of Interface
org.junit.platform.launcher.TestExecutionListener
-
Packages that use TestExecutionListener Package Description org.junit.platform.launcher Public API for configuring and launching test plans.org.junit.platform.launcher.listeners CommonTestExecutionListener
implementations and related support classes for theLauncher
. -
-
Uses of TestExecutionListener in org.junit.platform.launcher
Methods in org.junit.platform.launcher with parameters of type TestExecutionListener Modifier and Type Method Description void
Launcher. execute(LauncherDiscoveryRequest launcherDiscoveryRequest, TestExecutionListener... listeners)
Execute aTestPlan
which is built according to the suppliedLauncherDiscoveryRequest
by querying all registered engines and collecting their results, and notify registered listeners about the progress and results of the execution.void
Launcher. registerTestExecutionListeners(TestExecutionListener... listeners)
Register one or more listeners for test execution. -
Uses of TestExecutionListener in org.junit.platform.launcher.listeners
Classes in org.junit.platform.launcher.listeners that implement TestExecutionListener Modifier and Type Class Description class
LoggingListener
SimpleTestExecutionListener
for logging informational messages for all events via aBiConsumer
that consumesThrowable
andSupplier<String>
.class
SummaryGeneratingListener
SimpleTestExecutionListener
that generates a summary of the test execution.
-