Module org.junit.jupiter.api
Package org.junit.jupiter.api.condition
Annotation Type EnabledIfEnvironmentVariables
-
@Target({TYPE,METHOD}) @Retention(RUNTIME) @Documented @API(status=STABLE, since="5.6") public @interface EnabledIfEnvironmentVariables
@EnabledIfEnvironmentVariables
is a container for one or more@EnabledIfEnvironmentVariable
declarations.Note, however, that use of the
@EnabledIfEnvironmentVariables
container is completely optional since@EnabledIfEnvironmentVariable
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:
EnabledIfEnvironmentVariable
,Repeatable
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description EnabledIfEnvironmentVariable[]
value
An array of one or more@EnabledIfEnvironmentVariable
declarations.
-
-
-
Element Detail
-
value
EnabledIfEnvironmentVariable[] value
An array of one or more@EnabledIfEnvironmentVariable
declarations.
-
-