Uses of Class
org.junit.platform.engine.UniqueId
| Package | Description |
|---|---|
| org.junit.jupiter.engine |
Core package for the JUnit Jupiter test engine.
|
| org.junit.jupiter.engine.descriptor |
Test descriptors used within the JUnit Jupiter test engine.
|
| org.junit.platform.engine |
Public API for test engines.
|
| org.junit.platform.engine.discovery | |
| org.junit.platform.engine.support.descriptor |
TestDescriptor-related support classes
intended to be used by test engine implementations and clients of
the launcher. |
| org.junit.platform.jfr |
Java Flight Recorder support package.
|
| org.junit.platform.launcher |
Public API for configuring and launching test plans.
|
| org.junit.platform.launcher.core |
Core support classes for the
Launcher
including the LauncherFactory
and the LauncherDiscoveryRequestBuilder. |
| org.junit.platform.suite.engine |
Core package for the JUnit Platform Suite test engine.
|
| org.junit.vintage.engine |
Core package for the JUnit Vintage test engine.
|
| org.junit.vintage.engine.descriptor |
Test descriptors used within the JUnit Vintage test engine.
|
| org.junit.vintage.engine.discovery |
Internal classes for test discovery within the JUnit Vintage test engine.
|
-
Uses of UniqueId in org.junit.jupiter.engine
Methods in org.junit.jupiter.engine with parameters of type UniqueId Modifier and Type Method Description TestDescriptorJupiterTestEngine. discover(EngineDiscoveryRequest discoveryRequest, UniqueId uniqueId) -
Uses of UniqueId in org.junit.jupiter.engine.descriptor
Methods in org.junit.jupiter.engine.descriptor with parameters of type UniqueId Modifier and Type Method Description voidDynamicDescendantFilter. allow(UniqueId uniqueId)booleanDynamicDescendantFilter. test(UniqueId uniqueId)Constructors in org.junit.jupiter.engine.descriptor with parameters of type UniqueId Constructor Description ClassTestDescriptor(UniqueId uniqueId, Class<?> testClass, JupiterConfiguration configuration)JupiterEngineDescriptor(UniqueId uniqueId, JupiterConfiguration configuration)NestedClassTestDescriptor(UniqueId uniqueId, Class<?> testClass, JupiterConfiguration configuration)TestFactoryTestDescriptor(UniqueId uniqueId, Class<?> testClass, Method testMethod, JupiterConfiguration configuration)TestMethodTestDescriptor(UniqueId uniqueId, Class<?> testClass, Method testMethod, JupiterConfiguration configuration)TestTemplateTestDescriptor(UniqueId uniqueId, Class<?> testClass, Method templateMethod, JupiterConfiguration configuration) -
Uses of UniqueId in org.junit.platform.engine
Methods in org.junit.platform.engine that return UniqueId Modifier and Type Method Description UniqueIdUniqueId. append(String segmentType, String value)Construct a newUniqueIdby appending a newUniqueId.Segment, based on the suppliedsegmentTypeandvalue, to the end of thisUniqueId.UniqueIdUniqueId. append(UniqueId.Segment segment)UniqueIdUniqueId. appendEngine(String engineId)Construct a newUniqueIdby appending a newUniqueId.Segment, based on the suppliedengineId, to the end of thisUniqueId.static UniqueIdUniqueId. forEngine(String engineId)Create an engine's unique ID from itsengineIdusing the default format.UniqueIdTestDescriptor. getUniqueId()Get the unique identifier (UID) for this descriptor.static UniqueIdUniqueId. parse(String uniqueId)Parse aUniqueIdfrom the supplied string representation using the default format.UniqueIdUniqueId. removeLastSegment()static UniqueIdUniqueId. root(String segmentType, String value)Create a root unique ID from the suppliedsegmentTypeandvalueusing the default format.Methods in org.junit.platform.engine with parameters of type UniqueId Modifier and Type Method Description TestDescriptorTestEngine. discover(EngineDiscoveryRequest discoveryRequest, UniqueId uniqueId)Discover tests according to the suppliedEngineDiscoveryRequest.Optional<? extends TestDescriptor>TestDescriptor. findByUniqueId(UniqueId uniqueId)Find the descriptor with the supplied unique ID.booleanUniqueId. hasPrefix(UniqueId potentialPrefix)Determine if the suppliedUniqueIdis a prefix for thisUniqueId.default voidEngineDiscoveryListener. selectorProcessed(UniqueId engineId, DiscoverySelector selector, SelectorResolutionResult result)Must be called after a discovery selector has been processed by a test engine. -
Uses of UniqueId in org.junit.platform.engine.discovery
Methods in org.junit.platform.engine.discovery that return UniqueId Modifier and Type Method Description UniqueIdUniqueIdSelector. getUniqueId()Get the selectedUniqueId.Methods in org.junit.platform.engine.discovery with parameters of type UniqueId Modifier and Type Method Description static UniqueIdSelectorDiscoverySelectors. selectUniqueId(UniqueId uniqueId)Create aUniqueIdSelectorfor the suppliedUniqueId. -
Uses of UniqueId in org.junit.platform.engine.support.descriptor
Methods in org.junit.platform.engine.support.descriptor that return UniqueId Modifier and Type Method Description UniqueIdAbstractTestDescriptor. getUniqueId()Methods in org.junit.platform.engine.support.descriptor with parameters of type UniqueId Modifier and Type Method Description Optional<? extends TestDescriptor>AbstractTestDescriptor. findByUniqueId(UniqueId uniqueId)Constructors in org.junit.platform.engine.support.descriptor with parameters of type UniqueId Constructor Description AbstractTestDescriptor(UniqueId uniqueId, String displayName)Create a newAbstractTestDescriptorwith the suppliedUniqueIdand display name.AbstractTestDescriptor(UniqueId uniqueId, String displayName, TestSource source)Create a newAbstractTestDescriptorwith the suppliedUniqueId, display name, and source.EngineDescriptor(UniqueId uniqueId, String displayName)Create a newEngineDescriptorwith the suppliedUniqueIdand display name. -
Uses of UniqueId in org.junit.platform.jfr
Methods in org.junit.platform.jfr with parameters of type UniqueId Modifier and Type Method Description voidFlightRecordingDiscoveryListener. engineDiscoveryFinished(UniqueId engineId, EngineDiscoveryResult result)voidFlightRecordingDiscoveryListener. engineDiscoveryStarted(UniqueId engineId) -
Uses of UniqueId in org.junit.platform.launcher
Methods in org.junit.platform.launcher that return UniqueId Modifier and Type Method Description UniqueIdTestIdentifier. getUniqueIdObject()Get the unique ID of the represented test or container as aUniqueId.Methods in org.junit.platform.launcher that return types with arguments of type UniqueId Modifier and Type Method Description Optional<UniqueId>TestIdentifier. getParentIdObject()Get the unique ID of this identifier's parent as aUniqueId, if available.Methods in org.junit.platform.launcher with parameters of type UniqueId Modifier and Type Method Description default voidLauncherDiscoveryListener. engineDiscoveryFinished(UniqueId engineId, EngineDiscoveryResult result)Called when test discovery has finished for an engine.default voidLauncherDiscoveryListener. engineDiscoveryStarted(UniqueId engineId)Called when test discovery is about to be started for an engine. -
Uses of UniqueId in org.junit.platform.launcher.core
Methods in org.junit.platform.launcher.core with parameters of type UniqueId Modifier and Type Method Description LauncherDiscoveryResultEngineDiscoveryOrchestrator. 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 UniqueId in org.junit.platform.suite.engine
Methods in org.junit.platform.suite.engine with parameters of type UniqueId Modifier and Type Method Description TestDescriptorSuiteTestEngine. discover(EngineDiscoveryRequest discoveryRequest, UniqueId uniqueId) -
Uses of UniqueId in org.junit.vintage.engine
Methods in org.junit.vintage.engine with parameters of type UniqueId Modifier and Type Method Description TestDescriptorVintageTestEngine. discover(EngineDiscoveryRequest discoveryRequest, UniqueId uniqueId) -
Uses of UniqueId in org.junit.vintage.engine.descriptor
Constructors in org.junit.vintage.engine.descriptor with parameters of type UniqueId Constructor Description RunnerTestDescriptor(UniqueId uniqueId, Class<?> testClass, Runner runner)VintageEngineDescriptor(UniqueId uniqueId)VintageTestDescriptor(UniqueId uniqueId, Description description, TestSource source) -
Uses of UniqueId in org.junit.vintage.engine.discovery
Methods in org.junit.vintage.engine.discovery with parameters of type UniqueId Modifier and Type Method Description VintageEngineDescriptorVintageDiscoverer. discover(EngineDiscoveryRequest discoveryRequest, UniqueId uniqueId)