Package io.debezium.junit
Annotation Type SkipWhenDatabaseVersion
-
@Retention(RUNTIME) @Target({METHOD,TYPE}) @Repeatable(SkipWhenDatabaseVersions.class) public @interface SkipWhenDatabaseVersion
Marker annotation used together with theSkipTestRuleJUnit rule, that allows tests to be skipped based on the database version used for testing.- Author:
- Chris Cranford
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description EqualityCheckcheckDefines the type of equal-check that should initiate the skip on the test class or method.intmajorSpecify the database major version; cannot be omitted.StringreasonSpecifies the reason for skipping the method, used when logging a skipped test.
-
-
-
-
check
EqualityCheck check
Defines the type of equal-check that should initiate the skip on the test class or method.
-
-
-
reason
String reason
Specifies the reason for skipping the method, used when logging a skipped test.
-
-