Package org.hibernate.testing
Annotation Type Skip
-
@Retention(RUNTIME) @Target({METHOD,TYPE}) @Deprecated(forRemoval=true) public @interface Skip
Deprecated, for removal: This API element is subject to removal in a future version.Use JUnit 5 andDisabledOnOs
orDisabledIf
.An annotation, used in combination withSkip.Matcher
, to determine when/if tests should be skipped.
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description Class<? extends Skip.Matcher>
condition
Deprecated, for removal: This API element is subject to removal in a future version.The condition which causes a skipString
message
Deprecated, for removal: This API element is subject to removal in a future version.A message describing the reason for the skip
-
-
-
Element Detail
-
condition
Class<? extends Skip.Matcher> condition
Deprecated, for removal: This API element is subject to removal in a future version.The condition which causes a skip- Returns:
- The condition
-
-
-
message
String message
Deprecated, for removal: This API element is subject to removal in a future version.A message describing the reason for the skip- Returns:
- Descriptive message
-
-