Annotation Type DisabledOnQuarkusVersion
-
@Inherited @Target({TYPE,METHOD}) @Retention(RUNTIME) @ExtendWith(DisabledOnQuarkusVersionCondition.class) @Repeatable(DisabledOnQuarkusVersions.class) public @interface DisabledOnQuarkusVersion
The@DisabledOnQuarkusannotation can be used to selectively enable or disable certain tests based on version of Quarkus used in the test suite.
-
-
Element Detail
-
version
String version
Regular expression that is matched against the version of Quarkus used in the test suite. If the version matches, the test is disabled. Note that the entire Quarkus version string must match, substring match isn't enough.
-
-
-
reason
String reason
Why is the annotated test class or test method disabled.
-
-