Uses of Interface
org.junit.platform.launcher.LauncherDiscoveryRequest
-
Packages that use LauncherDiscoveryRequest 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.suite.commons Common support utilities for executing test suites on the JUnit Platform. -
-
Uses of LauncherDiscoveryRequest in org.junit.platform.launcher
Methods in org.junit.platform.launcher with parameters of type LauncherDiscoveryRequest Modifier and Type Method Description TestPlan
Launcher. discover(LauncherDiscoveryRequest launcherDiscoveryRequest)
Discover tests and build aTestPlan
according to the suppliedLauncherDiscoveryRequest
by querying all registered engines and collecting their results.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.default void
LauncherDiscoveryListener. launcherDiscoveryFinished(LauncherDiscoveryRequest request)
Called when test discovery has finished.default void
LauncherDiscoveryListener. launcherDiscoveryStarted(LauncherDiscoveryRequest request)
Called when test discovery is about to be started. -
Uses of LauncherDiscoveryRequest in org.junit.platform.launcher.core
Methods in org.junit.platform.launcher.core that return LauncherDiscoveryRequest Modifier and Type Method Description LauncherDiscoveryRequest
LauncherDiscoveryRequestBuilder. build()
Build theLauncherDiscoveryRequest
that has been configured via this builder.Methods in org.junit.platform.launcher.core with parameters of type LauncherDiscoveryRequest Modifier and Type Method Description LauncherDiscoveryResult
EngineDiscoveryOrchestrator. discover(LauncherDiscoveryRequest request, EngineDiscoveryOrchestrator.Phase phase)
Discovers tests for the supplied request in the supplied phase using the configured test engines.LauncherDiscoveryResult
EngineDiscoveryOrchestrator. discover(LauncherDiscoveryRequest request, EngineDiscoveryOrchestrator.Phase phase, UniqueId parentId)
Discovers tests for the supplied request in the supplied phase using the configured test engines to be used by the suite engine. -
Uses of LauncherDiscoveryRequest in org.junit.platform.suite.commons
Methods in org.junit.platform.suite.commons that return LauncherDiscoveryRequest Modifier and Type Method Description LauncherDiscoveryRequest
SuiteLauncherDiscoveryRequestBuilder. build()
-