Package org.hibernate.testing
Annotation Interface SkipForDialect
@Retention(RUNTIME)
@Target({METHOD,TYPE})
@Repeatable(SkipForDialects.class)
@Deprecated(forRemoval=true)
public @interface SkipForDialect
Deprecated, for removal: This API element is subject to removal in a future version.
Annotation used to indicate that a test should be skipped when run against the
indicated dialects.
- See Also:
-
Required Element Summary
Required Elements -
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Comment describing the reason for the skip.Deprecated, for removal: This API element is subject to removal in a future version.The key of a JIRA issue which covers the reason for this skip.boolean
Deprecated, for removal: This API element is subject to removal in a future version.Used to indicate if the dialects should be matched strictly (classes equal) or non-strictly (instanceof).
-
Element Details
-
value
Deprecated, for removal: This API element is subject to removal in a future version.The dialects against which to skip the test- Returns:
- The dialects
-
-
-
strictMatching
boolean strictMatchingDeprecated, for removal: This API element is subject to removal in a future version.Used to indicate if the dialects should be matched strictly (classes equal) or non-strictly (instanceof).- Returns:
- Should strict matching be used?
- Default:
- false
-
comment
String commentDeprecated, for removal: This API element is subject to removal in a future version.Comment describing the reason for the skip.- Returns:
- The comment
- Default:
- ""
-
jiraKey
String jiraKeyDeprecated, for removal: This API element is subject to removal in a future version.The key of a JIRA issue which covers the reason for this skip. Eventually we should make this a requirement.- Returns:
- The jira issue key
- Default:
- ""
-
SkipForDialect
instead.