Uses of Interface
org.junit.platform.engine.TestEngine
-
Packages that use TestEngine Package Description org.junit.jupiter.engine Core package for the JUnit Jupiter test engine.org.junit.platform.engine.support.hierarchical Support classes and base implementation for anyTestEnginethat wishes to organize test suites hierarchically based on theNodeabstraction.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.vintage.engine Core package for the JUnit Vintage test engine. -
-
Uses of TestEngine in org.junit.jupiter.engine
Classes in org.junit.jupiter.engine that implement TestEngine Modifier and Type Class Description classJupiterTestEngineThe JUnit JupiterTestEngine. -
Uses of TestEngine in org.junit.platform.engine.support.hierarchical
Classes in org.junit.platform.engine.support.hierarchical that implement TestEngine Modifier and Type Class Description classHierarchicalTestEngine<C extends EngineExecutionContext>Abstract base class for allTestEngineimplementations that wish to organize test suites hierarchically based on theNodeabstraction. -
Uses of TestEngine in org.junit.platform.launcher
Methods in org.junit.platform.launcher with parameters of type TestEngine Modifier and Type Method Description FilterResultEngineFilter. apply(TestEngine testEngine) -
Uses of TestEngine in org.junit.platform.launcher.core
Fields in org.junit.platform.launcher.core with type parameters of type TestEngine Modifier and Type Field Description private java.util.Collection<TestEngine>DefaultLauncherConfig. additionalTestEnginesprivate java.util.Collection<TestEngine>LauncherConfig.Builder. enginesprivate java.util.Map<TestEngine,TestDescriptor>Root. testEngineDescriptorsprivate java.lang.Iterable<TestEngine>DefaultLauncher. testEnginesMethods in org.junit.platform.launcher.core that return types with arguments of type TestEngine Modifier and Type Method Description java.util.Collection<TestEngine>DefaultLauncherConfig. getAdditionalTestEngines()java.util.Collection<TestEngine>LauncherConfig. getAdditionalTestEngines()Get the collection of additional test engines that should be added to theLauncher.(package private) java.lang.Iterable<TestEngine>Root. getTestEngines()java.lang.Iterable<TestEngine>ServiceLoaderTestEngineRegistry. loadTestEngines()private static java.lang.Iterable<TestEngine>DefaultLauncher. validateEngineIds(java.lang.Iterable<TestEngine> testEngines)Methods in org.junit.platform.launcher.core with parameters of type TestEngine Modifier and Type Method Description (package private) voidRoot. add(TestEngine engine, TestDescriptor testDescriptor)Add anengine's rootTestDescriptor.LauncherConfig.BuilderLauncherConfig.Builder. addTestEngines(TestEngine... engines)Add all of the suppliedenginesto the configuration.private java.util.List<java.lang.String>ServiceLoaderTestEngineRegistry. computeAttributes(TestEngine engine)private java.util.Optional<TestDescriptor>DefaultLauncher. discoverEngineRoot(TestEngine testEngine, LauncherDiscoveryRequest discoveryRequest)private voidDefaultLauncher. execute(TestEngine testEngine, ExecutionRequest executionRequest)(package private) TestDescriptorRoot. getTestDescriptorFor(TestEngine testEngine)private voidDefaultLauncher. handleThrowable(TestEngine testEngine, java.lang.String phase, java.lang.Throwable throwable)(package private) voidEngineDiscoveryResultValidator. validate(TestEngine testEngine, TestDescriptor root)Perform common validation checks.private static booleanDefaultLauncher. validateReservedIds(TestEngine testEngine)private static voidDefaultLauncher. validateWellKnownClassName(TestEngine testEngine, java.lang.String expectedClassName)Method parameters in org.junit.platform.launcher.core with type arguments of type TestEngine Modifier and Type Method Description private java.lang.StringServiceLoaderTestEngineRegistry. createDiscoveredTestEnginesMessage(java.lang.Iterable<TestEngine> testEngines)private static java.lang.Iterable<TestEngine>DefaultLauncher. validateEngineIds(java.lang.Iterable<TestEngine> testEngines)Constructor parameters in org.junit.platform.launcher.core with type arguments of type TestEngine Constructor Description DefaultLauncher(java.lang.Iterable<TestEngine> testEngines)Construct a newDefaultLauncherwith the supplied test engines.DefaultLauncherConfig(boolean testEngineAutoRegistrationEnabled, boolean testExecutionListenerAutoRegistrationEnabled, java.util.Collection<TestEngine> additionalTestEngines, java.util.Collection<TestExecutionListener> additionalTestExecutionListeners) -
Uses of TestEngine in org.junit.vintage.engine
Classes in org.junit.vintage.engine that implement TestEngine Modifier and Type Class Description classVintageTestEngineThe JUnit VintageTestEngine.
-