Module org.junit.jupiter.api
Package org.junit.jupiter.api.condition
Annotation Interface 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
Modifier and TypeRequired ElementDescriptionAn array of one or more@DisabledIfEnvironmentVariable
declarations.
-
Element Details
-
value
DisabledIfEnvironmentVariable[] valueAn array of one or more@DisabledIfEnvironmentVariable
declarations.
-