Module org.junit.jupiter.api
Package org.junit.jupiter.api.condition
Annotation Type EnabledIfSystemProperties
-
@Target({TYPE,METHOD}) @Retention(RUNTIME) @Documented @API(status=STABLE, since="5.6") public @interface EnabledIfSystemProperties
@EnabledIfSystemProperties
is a container for one or more@EnabledIfSystemProperty
declarations.Note, however, that use of the
@EnabledIfSystemProperties
container is completely optional since@EnabledIfSystemProperty
is a repeatable annotation.- Since:
- 5.6
- See Also:
EnabledIfSystemProperty
,Repeatable
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description EnabledIfSystemProperty[]
value
An array of one or more@EnabledIfSystemProperty
declarations.
-
-
-
Element Detail
-
value
EnabledIfSystemProperty[] value
An array of one or more@EnabledIfSystemProperty
declarations.
-
-