@API(status=STABLE, since="1.0") public final class TagFilter extends Object
PostDiscoveryFilters
based on included and excluded tags.includeTags(String...),
excludeTags(String...)| Modifier and Type | Method and Description |
|---|---|
static PostDiscoveryFilter |
excludeTags(List<String> tags)
Create an exclude filter based on the supplied
tags. |
static PostDiscoveryFilter |
excludeTags(String... tags)
Create an exclude filter based on the supplied
tags. |
static PostDiscoveryFilter |
includeTags(List<String> tags)
Create an include filter based on the supplied
tags. |
static PostDiscoveryFilter |
includeTags(String... tags)
Create an include filter based on the supplied
tags. |
public static PostDiscoveryFilter includeTags(String... tags) throws PreconditionViolationException
tags.
Note: each tag will be trimmed.
Containers and tests will only be executed if they are tagged with at least one of the supplied included tags.
tags - the included tags; never null or emptyPreconditionViolationException - if the supplied tags array is
null or empty, or if any individual tag is not syntactically
validincludeTags(List),
TestTag.isValid(String)public static PostDiscoveryFilter includeTags(List<String> tags) throws PreconditionViolationException
tags.
Note: each tag will be trimmed.
Containers and tests will only be executed if they are tagged with at least one of the supplied included tags.
tags - the included tags; never null or emptyPreconditionViolationException - if the supplied tags list is
null or empty, or if any individual tag is not syntactically
validincludeTags(String...),
TestTag.isValid(String)public static PostDiscoveryFilter excludeTags(String... tags) throws PreconditionViolationException
tags.
Note: each tag will be trimmed.
Containers and tests will only be executed if they are not tagged with any of the supplied excluded tags.
tags - the excluded tags; never null or emptyPreconditionViolationException - if the supplied tags array is
null or empty, or if any individual tag is not syntactically
validexcludeTags(List),
TestTag.isValid(String)public static PostDiscoveryFilter excludeTags(List<String> tags) throws PreconditionViolationException
tags.
Note: each tag will be trimmed.
Containers and tests will only be executed if they are not tagged with any of the supplied excluded tags.
tags - the excluded tags; never null or emptyPreconditionViolationException - if the supplied tags list is
null or empty, or if any individual tag is not syntactically
validexcludeTags(String...),
TestTag.isValid(String)