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