Module org.junit.jupiter.api
Package org.junit.jupiter.api.condition
Annotation Type 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.- Since:
- 5.6
- See Also:
DisabledIfSystemProperty
,Repeatable
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description DisabledIfSystemProperty[]
value
An array of one or more@DisabledIfSystemProperty
declarations.
-
-
-
Element Detail
-
value
DisabledIfSystemProperty[] value
An array of one or more@DisabledIfSystemProperty
declarations.
-
-