Module org.junit.jupiter.api
Package org.junit.jupiter.api.condition
Annotation Interface DisabledIfSystemProperties
@Target({TYPE,METHOD})
@Retention(RUNTIME)
@Documented
@API(status=STABLE,
since="5.6")
public @interface DisabledIfSystemProperties
@DisabledIfSystemProperties
is a container for one or more
@DisabledIfSystemProperty
declarations.
Note, however, that use of the @DisabledIfSystemProperties
container
is completely optional since @DisabledIfSystemProperty
is a repeatable annotation.
This annotation is not @Inherited
.
Consequently, if you wish to apply the same semantics to a subclass, this
annotation must be redeclared on the subclass.
- Since:
- 5.6
- See Also:
-
Required Element Summary
Modifier and TypeRequired ElementDescriptionAn array of one or more@DisabledIfSystemProperty
declarations.
-
Element Details
-
value
DisabledIfSystemProperty[] valueAn array of one or more@DisabledIfSystemProperty
declarations.
-