Package org.junit.jupiter.api
Annotation Type Disabled
-
@Target({TYPE,METHOD}) @Retention(RUNTIME) @Documented @API(status=STABLE, since="5.0") public @interface Disabled@Disabledis used to signal that the annotated test class or test method is currently disabled and should not be executed.@Disabledmay optionally be declared with a reason to document why the annotated test class or test method is disabled.When applied at the class level, all test methods within that class are automatically disabled as well.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.StringvalueThe reason this annotated test class or test method is disabled.
-