@API(value=Experimental) public final class TestIdentifier extends Object implements Serializable
TestPlan
.TestPlan
,
Serialized FormModifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
static TestIdentifier |
from(TestDescriptor testDescriptor)
Factory for creating a new
TestIdentifier from a TestDescriptor . |
String |
getDisplayName()
Get the display name of the represented test or container.
|
Optional<String> |
getParentId()
Get the unique ID of this identifier's parent, if available.
|
Optional<TestSource> |
getSource()
Get the source of the represented test
or container, if available.
|
Set<TestTag> |
getTags()
Get the set of tags associated with the represented
test or container.
|
String |
getUniqueId()
Get the unique ID of the represented test or container.
|
int |
hashCode() |
boolean |
isContainer()
Determine if this identifier represents a container.
|
boolean |
isTest()
Determine if this identifier represents a test.
|
String |
toString() |
@API(value=Internal) public static TestIdentifier from(TestDescriptor testDescriptor)
TestIdentifier
from a TestDescriptor
.public String getUniqueId()
Uniqueness must be guaranteed across an entire test plan, regardless of how many engines are used behind the scenes.
null
public Optional<String> getParentId()
An identifier without a parent is called a root.
null
though potentially emptypublic String getDisplayName()
A display name is a human-readable name for a test or
container that is typically used for test reporting in IDEs and build
tools. Display names may contain spaces, special characters, and emoji,
and the format may be customized by TestEngines
or potentially by end users as well. Consequently, display
names should never be parsed; rather, they should be used for display
purposes only.
null
or blankgetSource()
,
TestDescriptor.getDisplayName()
public boolean isTest()
public boolean isContainer()
public Optional<TestSource> getSource()
TestSource
public Set<TestTag> getTags()
TestTag