Uses of Class
org.junit.platform.launcher.TestPlan
-
Packages that use TestPlan 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 TestPlan in org.junit.platform.launcher
Methods in org.junit.platform.launcher that return TestPlan 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.static TestPlan
TestPlan. from(java.util.Collection<TestDescriptor> engineDescriptors)
Construct a newTestPlan
from the supplied collection ofTestDescriptors
.Methods in org.junit.platform.launcher with parameters of type TestPlan Modifier and Type Method Description default void
TestExecutionListener. testPlanExecutionFinished(TestPlan testPlan)
Called when the execution of theTestPlan
has finished, after all tests have been executed.default void
TestExecutionListener. testPlanExecutionStarted(TestPlan testPlan)
Called when the execution of theTestPlan
has started, before any test has been executed. -
Uses of TestPlan in org.junit.platform.launcher.listeners
Methods in org.junit.platform.launcher.listeners with parameters of type TestPlan Modifier and Type Method Description static java.lang.String
LegacyReportingUtils. getClassName(TestPlan testPlan, TestIdentifier testIdentifier)
Get the class name for the suppliedTestIdentifier
using the suppliedTestPlan
.void
LoggingListener. testPlanExecutionFinished(TestPlan testPlan)
void
SummaryGeneratingListener. testPlanExecutionFinished(TestPlan testPlan)
void
LoggingListener. testPlanExecutionStarted(TestPlan testPlan)
void
SummaryGeneratingListener. testPlanExecutionStarted(TestPlan testPlan)
-