Annotation Interface DisabledIfEnvironmentVariable


@Target({TYPE,METHOD}) @Retention(RUNTIME) @Documented @Repeatable(DisabledIfEnvironmentVariables.class) @ExtendWith(org.junit.jupiter.api.condition.DisabledIfEnvironmentVariableCondition.class) @API(status=STABLE, since="5.1") public @interface DisabledIfEnvironmentVariable
@DisabledIfEnvironmentVariable is used to signal that the annotated test class or test method is disabled if the value of the specified environment variable matches the specified regular expression.

When declared at the class level, the result will apply to all test methods within that class as well.

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.

If a test method is disabled via this annotation, that does not prevent the test class from being instantiated. Rather, it prevents the execution of the test method and method-level lifecycle callbacks such as @BeforeEach methods, @AfterEach methods, and corresponding extension APIs.

If the specified environment variable is undefined, the presence of this annotation will have no effect on whether or not the class or method is disabled.

This annotation may be used as a meta-annotation in order to create a custom composed annotation that inherits the semantics of this annotation.

As of JUnit Jupiter 5.6, this annotation is a repeatable annotation. Consequently, this annotation may be declared multiple times on an AnnotatedElement (i.e., test interface, test class, or test method). Specifically, this annotation will be found if it is directly present, indirectly present, or meta-present on a given element.

Since:
5.1
See Also:
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    A regular expression that will be used to match against the retrieved value of the named() environment variable.
    The name of the environment variable to retrieve.
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    Custom reason to provide if the test or container is disabled.
  • Element Details

    • named

      String named
      The name of the environment variable to retrieve.
      Returns:
      the environment variable name; never blank
      See Also:
    • matches

      String matches
      A regular expression that will be used to match against the retrieved value of the named() environment variable.
      Returns:
      the regular expression; never blank
      See Also:
    • disabledReason

      @API(status=STABLE, since="5.7") String disabledReason
      Custom reason to provide if the test or container is disabled.

      If a custom reason is supplied, it will be combined with the default reason for this annotation. If a custom reason is not supplied, the default reason will be used.

      Since:
      5.7
      Default:
      ""