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 anyTestEngine
that wishes to organize test suites hierarchically based on theNode
abstraction.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.testkit.engine Test Kit for testing the execution of aTestEngine
running on the JUnit Platform.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 class
JupiterTestEngine
The 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 class
HierarchicalTestEngine<C extends EngineExecutionContext>
Abstract base class for allTestEngine
implementations that wish to organize test suites hierarchically based on theNode
abstraction. -
Uses of TestEngine in org.junit.platform.launcher
Methods in org.junit.platform.launcher with parameters of type TestEngine Modifier and Type Method Description FilterResult
EngineFilter. 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. additionalTestEngines
private java.util.Collection<TestEngine>
LauncherConfig.Builder. engines
private java.util.Map<TestEngine,TestDescriptor>
Root. testEngineDescriptors
private java.lang.Iterable<TestEngine>
DefaultLauncher. testEngines
Methods 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) void
Root. add(TestEngine engine, TestDescriptor testDescriptor)
Add anengine
's rootTestDescriptor
.LauncherConfig.Builder
LauncherConfig.Builder. addTestEngines(TestEngine... engines)
Add all of the suppliedengines
to the configuration.private java.util.List<java.lang.String>
ServiceLoaderTestEngineRegistry. computeAttributes(TestEngine engine)
private TestDescriptor
DefaultLauncher. discoverEngineRoot(TestEngine testEngine, LauncherDiscoveryRequest discoveryRequest)
private void
DefaultLauncher. execute(TestDescriptor engineDescriptor, EngineExecutionListener listener, ConfigurationParameters configurationParameters, TestEngine testEngine)
(package private) TestDescriptor
Root. getTestDescriptorFor(TestEngine testEngine)
(package private) void
EngineDiscoveryResultValidator. validate(TestEngine testEngine, TestDescriptor root)
Perform common validation checks.private static boolean
DefaultLauncher. validateReservedIds(TestEngine testEngine)
private static void
DefaultLauncher. 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.String
ServiceLoaderTestEngineRegistry. createDiscoveredTestEnginesMessage(java.lang.Iterable<TestEngine> testEngines)
private static java.lang.Iterable<TestEngine>
DefaultLauncher. validateEngineIds(java.lang.Iterable<TestEngine> testEngines)
Constructors in org.junit.platform.launcher.core with parameters of type TestEngine Constructor Description EngineDiscoveryErrorDescriptor(UniqueId uniqueId, TestEngine testEngine, java.lang.Throwable cause)
Constructor parameters in org.junit.platform.launcher.core with type arguments of type TestEngine Constructor Description DefaultLauncher(java.lang.Iterable<TestEngine> testEngines)
Construct a newDefaultLauncher
with 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.platform.testkit.engine
Fields in org.junit.platform.testkit.engine declared as TestEngine Modifier and Type Field Description private TestEngine
EngineTestKit.Builder. testEngine
Methods in org.junit.platform.testkit.engine that return TestEngine Modifier and Type Method Description private static TestEngine
EngineTestKit. loadTestEngine(java.lang.String engineId)
Methods in org.junit.platform.testkit.engine that return types with arguments of type TestEngine Modifier and Type Method Description private static java.lang.Iterable<TestEngine>
EngineTestKit. loadTestEngines()
Methods in org.junit.platform.testkit.engine with parameters of type TestEngine Modifier and Type Method Description private static java.util.List<java.lang.String>
EngineTestKit. computeAttributes(TestEngine engine)
static EngineTestKit.Builder
EngineTestKit. engine(TestEngine testEngine)
Create an executionEngineTestKit.Builder
for the suppliedTestEngine
.static EngineExecutionResults
EngineTestKit. execute(TestEngine testEngine, EngineDiscoveryRequest discoveryRequest)
Execute tests for the givenEngineDiscoveryRequest
using the suppliedTestEngine
.private static void
EngineTestKit. execute(TestEngine testEngine, EngineDiscoveryRequest discoveryRequest, EngineExecutionListener listener)
Method parameters in org.junit.platform.testkit.engine with type arguments of type TestEngine Modifier and Type Method Description private static java.lang.String
EngineTestKit. createDiscoveredTestEnginesMessage(java.lang.Iterable<TestEngine> testEngines)
Constructors in org.junit.platform.testkit.engine with parameters of type TestEngine Constructor Description Builder(TestEngine testEngine)
-
Uses of TestEngine in org.junit.vintage.engine
Classes in org.junit.vintage.engine that implement TestEngine Modifier and Type Class Description class
VintageTestEngine
The JUnit VintageTestEngine
.
-