Uses of Class
org.junit.platform.engine.TestTag
-
Packages that use TestTag Package Description 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.support.descriptor TestDescriptor
-related support classes intended to be used by test engine implementations and clients of the launcher.org.junit.platform.launcher Public API for configuring and launching test plans.org.junit.platform.launcher.tagexpression The tag expression language parser and related support classes.org.junit.vintage.engine.descriptor Test descriptors used within the JUnit Vintage test engine. -
-
Uses of TestTag in org.junit.jupiter.engine.descriptor
Fields in org.junit.jupiter.engine.descriptor with type parameters of type TestTag Modifier and Type Field Description protected java.util.Set<TestTag>
ClassBasedTestDescriptor. tags
private java.util.Set<TestTag>
MethodBasedTestDescriptor. tags
Set of method-level tags; does not contain tags from parent.Methods in org.junit.jupiter.engine.descriptor that return types with arguments of type TestTag Modifier and Type Method Description java.util.Set<TestTag>
ClassTestDescriptor. getTags()
(package private) static java.util.Set<TestTag>
JupiterTestDescriptor. getTags(java.lang.reflect.AnnotatedElement element)
java.util.Set<TestTag>
MethodBasedTestDescriptor. getTags()
java.util.Set<TestTag>
NestedClassTestDescriptor. getTags()
-
Uses of TestTag in org.junit.platform.engine
Methods in org.junit.platform.engine that return TestTag Modifier and Type Method Description static TestTag
TestTag. create(java.lang.String name)
Create aTestTag
from the suppliedname
.Methods in org.junit.platform.engine that return types with arguments of type TestTag Modifier and Type Method Description java.util.Set<TestTag>
TestDescriptor. getTags()
Get the set of tags associated with this descriptor. -
Uses of TestTag in org.junit.platform.engine.support.descriptor
Methods in org.junit.platform.engine.support.descriptor that return types with arguments of type TestTag Modifier and Type Method Description java.util.Set<TestTag>
AbstractTestDescriptor. getTags()
-
Uses of TestTag in org.junit.platform.launcher
Fields in org.junit.platform.launcher with type parameters of type TestTag Modifier and Type Field Description private java.util.Set<TestTag>
TestIdentifier.SerializedForm. tags
private java.util.Set<TestTag>
TestIdentifier. tags
Methods in org.junit.platform.launcher that return types with arguments of type TestTag Modifier and Type Method Description private java.util.Set<TestTag>
TestIdentifier. copyOf(java.util.Set<TestTag> tags)
java.util.Set<TestTag>
TestIdentifier. getTags()
Get the set of tags associated with the represented test or container.Method parameters in org.junit.platform.launcher with type arguments of type TestTag Modifier and Type Method Description private java.util.Set<TestTag>
TestIdentifier. copyOf(java.util.Set<TestTag> tags)
Constructor parameters in org.junit.platform.launcher with type arguments of type TestTag Constructor Description TestIdentifier(UniqueId uniqueId, java.lang.String displayName, TestSource source, java.util.Set<TestTag> tags, TestDescriptor.Type type, UniqueId parentId, java.lang.String legacyReportingName)
-
Uses of TestTag in org.junit.platform.launcher.tagexpression
Method parameters in org.junit.platform.launcher.tagexpression with type arguments of type TestTag Modifier and Type Method Description boolean
TagExpression. evaluate(java.util.Collection<TestTag> tags)
Evaluate this tag expression against the supplied collection of tags. -
Uses of TestTag in org.junit.vintage.engine.descriptor
Methods in org.junit.vintage.engine.descriptor that return types with arguments of type TestTag Modifier and Type Method Description java.util.Set<TestTag>
VintageTestDescriptor. getTags()
Method parameters in org.junit.vintage.engine.descriptor with type arguments of type TestTag Modifier and Type Method Description private void
VintageTestDescriptor. addCategoriesAsTags(java.util.Set<TestTag> tags)
private void
VintageTestDescriptor. addTagsFromParent(java.util.Set<TestTag> tags)
-