Annotation Type DisabledOnOs



  • @Target({TYPE,METHOD})
    @Retention(RUNTIME)
    @Documented
    @ExtendWith(org.junit.jupiter.api.condition.DisabledOnOsCondition.class)
    @API(status=STABLE,
         since="5.1")
    public @interface DisabledOnOs
    @DisabledOnOs is used to signal that the annotated test class or test method is disabled on one or more specified operating systems.

    When applied at the class level, all test methods within that class will be disabled on the same specified operating systems.

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

    Warning

    As of JUnit Jupiter 5.1, this annotation can only be declared once on an AnnotatedElement (i.e., test interface, test class, or test method). If this annotation is directly present, indirectly present, or meta-present multiple times on a given element, only the first such annotation discovered by JUnit will be used; any additional declarations will be silently ignored. Note, however, that this annotation may be used in conjunction with other @Enabled* or @Disabled* annotations in this package.

    Since:
    5.1
    See Also:
    EnabledOnOs, EnabledOnJre, DisabledOnJre, EnabledIfEnvironmentVariable, DisabledIfEnvironmentVariable, EnabledIfSystemProperty, DisabledIfSystemProperty, EnabledIf, DisabledIf, Disabled
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      OS[] value
      Operating systems on which the annotated class or method should be disabled.
    • Element Detail

      • value

        OS[] value
        Operating systems on which the annotated class or method should be disabled.
        See Also:
        OS