Uses of Class
org.junit.platform.engine.UniqueId
-
Packages that use 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.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 TestDescriptor
JupiterTestEngine. 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 void
DynamicDescendantFilter. allow(UniqueId uniqueId)
boolean
DynamicDescendantFilter. test(UniqueId uniqueId)
Constructors in org.junit.jupiter.engine.descriptor with parameters of type UniqueId Constructor Description ClassTestDescriptor(UniqueId uniqueId, java.lang.Class<?> testClass)
ClassTestDescriptor(UniqueId uniqueId, java.util.function.Function<java.lang.Class<?>,java.lang.String> defaultDisplayNameGenerator, java.lang.Class<?> testClass)
JupiterEngineDescriptor(UniqueId uniqueId)
NestedClassTestDescriptor(UniqueId uniqueId, java.lang.Class<?> testClass)
TestFactoryTestDescriptor(UniqueId uniqueId, java.lang.Class<?> testClass, java.lang.reflect.Method testMethod)
TestMethodTestDescriptor(UniqueId uniqueId, java.lang.Class<?> testClass, java.lang.reflect.Method testMethod)
TestTemplateTestDescriptor(UniqueId uniqueId, java.lang.Class<?> testClass, java.lang.reflect.Method templateMethod)
-
Uses of UniqueId in org.junit.platform.engine
Methods in org.junit.platform.engine that return UniqueId Modifier and Type Method Description UniqueId
UniqueId. append(java.lang.String segmentType, java.lang.String value)
Construct a newUniqueId
by appending a newUniqueId.Segment
, based on the suppliedsegmentType
andvalue
, to the end of thisUniqueId
.UniqueId
UniqueId. append(UniqueId.Segment segment)
static UniqueId
UniqueId. forEngine(java.lang.String engineId)
Create an engine's unique ID from itsengineId
using the default format.UniqueId
TestDescriptor. getUniqueId()
Get the unique identifier (UID) for this descriptor.static UniqueId
UniqueId. parse(java.lang.String uniqueId)
Parse aUniqueId
from the supplied string representation using the default format.static UniqueId
UniqueId. root(java.lang.String segmentType, java.lang.String value)
Create a root unique ID from the suppliedsegmentType
andvalue
using the default format.Methods in org.junit.platform.engine with parameters of type UniqueId Modifier and Type Method Description TestDescriptor
TestEngine. discover(EngineDiscoveryRequest discoveryRequest, UniqueId uniqueId)
Discover tests according to the suppliedEngineDiscoveryRequest
.java.util.Optional<? extends TestDescriptor>
TestDescriptor. findByUniqueId(UniqueId uniqueId)
Find the descriptor with the supplied unique ID.boolean
UniqueId. hasPrefix(UniqueId potentialPrefix)
Determine if the suppliedUniqueId
is a prefix for thisUniqueId
. -
Uses of UniqueId in org.junit.platform.engine.discovery
Methods in org.junit.platform.engine.discovery that return UniqueId Modifier and Type Method Description UniqueId
UniqueIdSelector. getUniqueId()
Get the selectedUniqueId
.Methods in org.junit.platform.engine.discovery with parameters of type UniqueId Modifier and Type Method Description static UniqueIdSelector
DiscoverySelectors. selectUniqueId(UniqueId uniqueId)
Create aUniqueIdSelector
for 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 UniqueId
AbstractTestDescriptor. getUniqueId()
Methods in org.junit.platform.engine.support.descriptor with parameters of type UniqueId Modifier and Type Method Description java.util.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, java.lang.String displayName)
Create a newAbstractTestDescriptor
with the suppliedUniqueId
and display name.AbstractTestDescriptor(UniqueId uniqueId, java.lang.String displayName, TestSource source)
Create a newAbstractTestDescriptor
with the suppliedUniqueId
, display name, and source.EngineDescriptor(UniqueId uniqueId, java.lang.String displayName)
Create a newEngineDescriptor
with the suppliedUniqueId
and display name. -
Uses of UniqueId in org.junit.vintage.engine
Methods in org.junit.vintage.engine with parameters of type UniqueId Modifier and Type Method Description TestDescriptor
VintageTestEngine. 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, java.lang.Class<?> testClass, org.junit.runner.Runner runner)
VintageTestDescriptor(UniqueId uniqueId, org.junit.runner.Description description)
-
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 TestDescriptor
VintageDiscoverer. discover(EngineDiscoveryRequest discoveryRequest, UniqueId uniqueId)
-