Annotation Type DisabledForJreRange
-
@Target({TYPE,METHOD}) @Retention(RUNTIME) @Documented @ExtendWith(org.junit.jupiter.api.condition.DisabledForJreRangeCondition.class) @API(status=STABLE, since="5.6") public @interface DisabledForJreRange@DisabledForJreRangeis used to signal that the annotated test class or test method is disabled for a specific range of Java Runtime Environment (JRE) versions.Version ranges can be specified as
JREenum constants viaminandmaxor as integers viaminVersionandmaxVersion.When applied at the class level, all test methods within that class will be disabled on the same specified JRE versions.
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 prevents execution of the test method and method-level lifecycle callbacks such as
@BeforeEachmethods,@AfterEachmethods, and corresponding extension APIs. However, that does not prevent the test class from being instantiated, and it does not prevent the execution of class-level lifecycle callbacks such as@BeforeAllmethods,@AfterAllmethods, and corresponding extension APIs.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
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.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.StringdisabledReasonCustom reason to provide if the test or container is disabled.JREmaxJava Runtime Environment version which is used as the upper boundary for the version range that determines if the annotated class or method should be disabled, specified as aJREenum constant.intmaxVersionJava Runtime Environment version which is used as the upper boundary for the version range that determines if the annotated class or method should be disabled, specified as an integer.JREminJava Runtime Environment version which is used as the lower boundary for the version range that determines if the annotated class or method should be disabled, specified as aJREenum constant.intminVersionJava Runtime Environment version which is used as the lower boundary for the version range that determines if the annotated class or method should be disabled, specified as an integer.
-
-
-
Element Detail
-
min
JRE min
Java Runtime Environment version which is used as the lower boundary for the version range that determines if the annotated class or method should be disabled, specified as aJREenum constant.If a
JREenum constant does not exist for a particular JRE version, you can specify the minimum version viaminVersioninstead.Defaults to
UNDEFINED, which will be interpreted asJAVA_8if theminVersionis not set.- See Also:
JRE,minVersion()
- Default:
- org.junit.jupiter.api.condition.JRE.UNDEFINED
-
-
-
max
JRE max
Java Runtime Environment version which is used as the upper boundary for the version range that determines if the annotated class or method should be disabled, specified as aJREenum constant.If a
JREenum constant does not exist for a particular JRE version, you can specify the maximum version viamaxVersioninstead.Defaults to
UNDEFINED, which will be interpreted asOTHERif themaxVersionis not set.- See Also:
JRE,maxVersion()
- Default:
- org.junit.jupiter.api.condition.JRE.UNDEFINED
-
-
-
minVersion
@API(status=MAINTAINED, since="5.13.3") int minVersionJava Runtime Environment version which is used as the lower boundary for the version range that determines if the annotated class or method should be disabled, specified as an integer.If a
JREenum constant exists for the particular JRE version, you can specify the minimum version viamininstead.Defaults to
-1to signal thatminshould be used instead.- Since:
- 5.12
- See Also:
min(),JRE.version(),Runtime.Version.feature()
- Default:
- -1
-
-
-
maxVersion
@API(status=MAINTAINED, since="5.13.3") int maxVersionJava Runtime Environment version which is used as the upper boundary for the version range that determines if the annotated class or method should be disabled, specified as an integer.If a
JREenum constant exists for the particular JRE version, you can specify the maximum version viamaxinstead.Defaults to
-1to signal thatmaxshould be used instead.- Since:
- 5.12
- See Also:
max(),JRE.version(),Runtime.Version.feature()
- Default:
- -1
-
-
-
disabledReason
@API(status=STABLE, since="5.7") java.lang.String disabledReasonCustom 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:
- ""
-
-