Uses of Class
org.junit.platform.launcher.TestPlan
-
Packages that use TestPlan Package Description org.junit.platform.console.tasks Internal execution tasks for JUnit's console launcher.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.org.junit.platform.reporting.legacy Support for legacy reporting formats.org.junit.platform.reporting.legacy.xml Support for generating XML reports using a format which is compatible with the de facto standard for JUnit 4 based test reports that was made popular by the Ant build system.org.junit.platform.reporting.open.xml Support for generating Open Test Reporting compatible XML event reports.org.junit.platform.runner Runnerand annotations for configuring and executing tests on the JUnit Platform in a JUnit 4 environment. -
-
Uses of TestPlan in org.junit.platform.console.tasks
Fields in org.junit.platform.console.tasks declared as TestPlan Modifier and Type Field Description private TestPlanTestFeedPrintingListener. testPlanMethods in org.junit.platform.console.tasks with parameters of type TestPlan Modifier and Type Method Description voidDetailsPrintingListener. listTests(TestPlan testPlan)voidFlatPrintingListener. listTests(TestPlan testPlan)voidTestFeedPrintingListener. listTests(TestPlan testPlan)voidTreePrintingListener. listTests(TestPlan testPlan)voidVerboseTreePrintingListener. listTests(TestPlan testPlan)private static voidConsoleTestExecutor. printFoundTestsSummary(java.io.PrintWriter out, TestPlan testPlan)private voidVerboseTreePrintingListener. printNumberOfTests(TestPlan testPlan, java.lang.String prefix)voidFlatPrintingListener. testPlanExecutionFinished(TestPlan testPlan)voidTestFeedPrintingListener. testPlanExecutionFinished(TestPlan testPlan)voidTreePrintingListener. testPlanExecutionFinished(TestPlan testPlan)voidVerboseTreePrintingListener. testPlanExecutionFinished(TestPlan testPlan)voidFlatPrintingListener. testPlanExecutionStarted(TestPlan testPlan)voidTestFeedPrintingListener. testPlanExecutionStarted(TestPlan testPlan)voidTreePrintingListener. testPlanExecutionStarted(TestPlan testPlan)voidVerboseTreePrintingListener. testPlanExecutionStarted(TestPlan testPlan) -
Uses of TestPlan in org.junit.platform.launcher
Methods in org.junit.platform.launcher that return TestPlan Modifier and Type Method Description TestPlanLauncher. discover(LauncherDiscoveryRequest launcherDiscoveryRequest)Discover tests and build aTestPlanaccording to the suppliedLauncherDiscoveryRequestby querying all registered engines and collecting their results.static TestPlanTestPlan. from(java.util.Collection<TestDescriptor> engineDescriptors, ConfigurationParameters configurationParameters)Construct a newTestPlanfrom the supplied collection ofTestDescriptors.Methods in org.junit.platform.launcher with parameters of type TestPlan Modifier and Type Method Description voidLauncher. execute(TestPlan testPlan, TestExecutionListener... listeners)Execute the suppliedTestPlanand notify registered listeners about the progress and results of the execution.default voidTestExecutionListener. testPlanExecutionFinished(TestPlan testPlan)Called when the execution of theTestPlanhas finished, after all tests have been executed.default voidTestExecutionListener. testPlanExecutionStarted(TestPlan testPlan)Called when the execution of theTestPlanhas started, before any test has been executed. -
Uses of TestPlan in org.junit.platform.launcher.core
Subclasses of TestPlan in org.junit.platform.launcher.core Modifier and Type Class Description (package private) classInternalTestPlanFields in org.junit.platform.launcher.core declared as TestPlan Modifier and Type Field Description private TestPlanInternalTestPlan. delegateprivate TestPlanExecutionListenerAdapter. testPlanMethods in org.junit.platform.launcher.core that return TestPlan Modifier and Type Method Description TestPlanDefaultLauncher. discover(LauncherDiscoveryRequest discoveryRequest)TestPlanDefaultLauncherSession.ClosedLauncher. discover(LauncherDiscoveryRequest launcherDiscoveryRequest)TestPlanDelegatingLauncher. discover(LauncherDiscoveryRequest launcherDiscoveryRequest)TestPlanInterceptingLauncher. discover(LauncherDiscoveryRequest launcherDiscoveryRequest)TestPlanSessionPerRequestLauncher. discover(LauncherDiscoveryRequest launcherDiscoveryRequest)TestPlanInternalTestPlan. getDelegate()Methods in org.junit.platform.launcher.core with parameters of type TestPlan Modifier and Type Method Description private static EngineExecutionListenerEngineExecutionOrchestrator. buildEngineExecutionListener(EngineExecutionListener parentEngineExecutionListener, TestExecutionListener testExecutionListener, TestPlan testPlan)private voidEngineExecutionOrchestrator. dryRun(TestPlan testPlan, TestExecutionListener listener)voidDefaultLauncher. execute(TestPlan testPlan, TestExecutionListener... listeners)voidDefaultLauncherSession.ClosedLauncher. execute(TestPlan testPlan, TestExecutionListener... listeners)voidDelegatingLauncher. execute(TestPlan testPlan, TestExecutionListener... listeners)voidInterceptingLauncher. execute(TestPlan testPlan, TestExecutionListener... listeners)voidSessionPerRequestLauncher. execute(TestPlan testPlan, TestExecutionListener... listeners)voidCompositeTestExecutionListener. testPlanExecutionFinished(TestPlan testPlan)voidCompositeTestExecutionListener. testPlanExecutionStarted(TestPlan testPlan)Constructors in org.junit.platform.launcher.core with parameters of type TestPlan Constructor Description ExecutionListenerAdapter(TestPlan testPlan, TestExecutionListener testExecutionListener)InternalTestPlan(LauncherDiscoveryResult discoveryResult, TestPlan delegate) -
Uses of TestPlan in org.junit.platform.launcher.listeners
Fields in org.junit.platform.launcher.listeners declared as TestPlan Modifier and Type Field Description private TestPlanMutableTestExecutionSummary. testPlanprivate TestPlanSummaryGeneratingListener. testPlanMethods in org.junit.platform.launcher.listeners with parameters of type TestPlan Modifier and Type Method Description static java.lang.StringLegacyReportingUtils. getClassName(TestPlan testPlan, TestIdentifier testIdentifier)Deprecated.Get the class name for the suppliedTestIdentifierusing the suppliedTestPlan.private static TestIdentifierLegacyReportingUtils. getParent(TestPlan testPlan, TestIdentifier testIdentifier)Deprecated.private static java.lang.StringLegacyReportingUtils. getParentLegacyReportingName(TestPlan testPlan, TestIdentifier testIdentifier)Deprecated.voidLoggingListener. testPlanExecutionFinished(TestPlan testPlan)voidSummaryGeneratingListener. testPlanExecutionFinished(TestPlan testPlan)voidUniqueIdTrackingListener. testPlanExecutionFinished(TestPlan testPlan)voidLoggingListener. testPlanExecutionStarted(TestPlan testPlan)voidSummaryGeneratingListener. testPlanExecutionStarted(TestPlan testPlan)voidUniqueIdTrackingListener. testPlanExecutionStarted(TestPlan testPlan)Constructors in org.junit.platform.launcher.listeners with parameters of type TestPlan Constructor Description MutableTestExecutionSummary(TestPlan testPlan) -
Uses of TestPlan in org.junit.platform.reporting.legacy
Methods in org.junit.platform.reporting.legacy with parameters of type TestPlan Modifier and Type Method Description static java.lang.StringLegacyReportingUtils. getClassName(TestPlan testPlan, TestIdentifier testIdentifier)Get the class name for the suppliedTestIdentifierusing the suppliedTestPlan. -
Uses of TestPlan in org.junit.platform.reporting.legacy.xml
Fields in org.junit.platform.reporting.legacy.xml declared as TestPlan Modifier and Type Field Description private TestPlanXmlReportData. testPlanMethods in org.junit.platform.reporting.legacy.xml that return TestPlan Modifier and Type Method Description (package private) TestPlanXmlReportData. getTestPlan()Methods in org.junit.platform.reporting.legacy.xml with parameters of type TestPlan Modifier and Type Method Description private booleanXmlReportWriter. shouldInclude(TestPlan testPlan, TestIdentifier testIdentifier)voidLegacyXmlReportGeneratingListener. testPlanExecutionFinished(TestPlan testPlan)voidLegacyXmlReportGeneratingListener. testPlanExecutionStarted(TestPlan testPlan)Constructors in org.junit.platform.reporting.legacy.xml with parameters of type TestPlan Constructor Description XmlReportData(TestPlan testPlan, java.time.Clock clock) -
Uses of TestPlan in org.junit.platform.reporting.open.xml
Methods in org.junit.platform.reporting.open.xml with parameters of type TestPlan Modifier and Type Method Description voidOpenTestReportGeneratingListener. testPlanExecutionFinished(TestPlan testPlan)voidOpenTestReportGeneratingListener. testPlanExecutionStarted(TestPlan testPlan) -
Uses of TestPlan in org.junit.platform.runner
Fields in org.junit.platform.runner declared as TestPlan Modifier and Type Field Description private TestPlanJUnitPlatformTestTree. testPlanMethods in org.junit.platform.runner that return TestPlan Modifier and Type Method Description TestPlanJUnitPlatformTestTree. getTestPlan()Methods in org.junit.platform.runner with parameters of type TestPlan Modifier and Type Method Description private voidJUnitPlatformTestTree. buildDescription(TestIdentifier identifier, org.junit.runner.Description parent, TestPlan testPlan)private voidJUnitPlatformTestTree. buildDescriptionTree(org.junit.runner.Description suiteDescription, TestPlan testPlan)private org.junit.runner.DescriptionJUnitPlatformTestTree. createJUnit4Description(TestIdentifier identifier, TestPlan testPlan)private org.junit.runner.DescriptionJUnitPlatformTestTree. generateSuiteDescription(TestPlan testPlan, java.lang.Class<?> testClass)Constructors in org.junit.platform.runner with parameters of type TestPlan Constructor Description JUnitPlatformTestTree(TestPlan testPlan, java.lang.Class<?> testClass)
-