Contents
Annotation Interface ExcludeTags
@Retention(RUNTIME)
@Target(TYPE)
@Inherited
@Documented
@API(status=MAINTAINED,
since="1.0")
public @interface ExcludeTags
@ExcludeTags
specifies the
tags or tag expressions to be excluded when running a
test suite on the JUnit Platform.
Tag Expressions 
Tag expressions are boolean expressions with the following allowed
operators: !
(not), &
(and) and |
(or). Parentheses
can be used to adjust for operator precedence. Please refer to the
JUnit User Guide
for usage examples.
Syntax Rules for Tags 
- A tag must not be blank.
- A stripped tag must not contain whitespace.
- A stripped tag must not contain ISO control characters.
- A stripped tag must not contain reserved characters.
Reserved characters that are not permissible as part of a tag name.
","
"("
")"
"&"
"|"
"!"
- Since:
- 1.0
- See Also:
-
Element Details
-
value
String[] valueOne or more tags to exclude.Note: each tag will be stripped and validated according to the Syntax Rules for Tags (see class-level Javadoc for details).
-