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.core Core support classes for theLauncherincluding theLauncherFactoryand theLauncherDiscoveryRequestBuilder.org.junit.platform.launcher.listeners CommonTestExecutionListenerimplementations 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 voidLauncher. execute(LauncherDiscoveryRequest launcherDiscoveryRequest, TestExecutionListener... listeners)Execute aTestPlanwhich is built according to the suppliedLauncherDiscoveryRequestby querying all registered engines and collecting their results, and notify registered listeners about the progress and results of the execution.voidLauncher. execute(TestPlan testPlan, TestExecutionListener... listeners)Execute the suppliedTestPlanand notify registered listeners about the progress and results of the execution.voidLauncher. registerTestExecutionListeners(TestExecutionListener... listeners)Register one or more listeners for test execution. -
Uses of TestExecutionListener in org.junit.platform.launcher.core
Methods in org.junit.platform.launcher.core that return types with arguments of type TestExecutionListener Modifier and Type Method Description java.util.Collection<TestExecutionListener>LauncherConfig. getAdditionalTestExecutionListeners()Get the collection of additional test execution listeners that should be added to theLauncher.Methods in org.junit.platform.launcher.core with parameters of type TestExecutionListener Modifier and Type Method Description LauncherConfig.BuilderLauncherConfig.Builder. addTestExecutionListeners(TestExecutionListener... listeners)Add all of the suppliedlistenersto the configuration. -
Uses of TestExecutionListener in org.junit.platform.launcher.listeners
Classes in org.junit.platform.launcher.listeners that implement TestExecutionListener Modifier and Type Class Description classLoggingListenerSimpleTestExecutionListenerfor logging informational messages for all events via aBiConsumerthat consumesThrowableandSupplier<String>.classSummaryGeneratingListenerSimpleTestExecutionListenerthat generates a summary of the test execution.
-