@Retention(value=RUNTIME) @Target(value={METHOD,TYPE}) @Repeatable(value=SkipFors.class) @ExtendWith(value=SkipForCondition.class) public @interface SkipFor
| Modifier and Type | Required Element and Description |
|---|---|
String |
image |
| Modifier and Type | Optional Element and Description |
|---|---|
String |
imageMetadataLabelArchitecture
Architecture or regexp pattern matching architecture in
Docker Labels in image metadata
For example "x86_64" or "x86_.*". |
String |
imageMetadataLabelName
Name or regexp pattern matching name in
Docker Labels in image metadata
For example "jboss-eap-7/eap73-openjdk11-openshift-rhel8" or "eap73-openjdk11-.*". |
String |
name
Name or regexp pattern matching name of the image.
|
String |
reason |
String |
subId
Name or regexp pattern matching the value of the
xtf.<product id>>.subid XTF property
For example, ".*74.*" will match and skip the annotated test when xtf.eap.subid is set to "74-openjdk11",
"74-openj9-11" or "74". |
public abstract String image
public abstract String name
Only one of name, imageMetadataLabelName, imageMetadataLabelArchitecture and
subId can be presented.
public abstract String imageMetadataLabelName
Docker Labels in image metadata
For example "jboss-eap-7/eap73-openjdk11-openshift-rhel8" or "eap73-openjdk11-.*".
Only one of name, imageMetadataLabelName, imageMetadataLabelArchitecture and
subId can be presented.
public abstract String imageMetadataLabelArchitecture
Docker Labels in image metadata
For example "x86_64" or "x86_.*".
Only one of name, imageMetadataLabelName, imageMetadataLabelArchitecture and
subId can be presented.
public abstract String subId
xtf.<product id>>.subid XTF property
For example, ".*74.*" will match and skip the annotated test when xtf.eap.subid is set to "74-openjdk11",
"74-openj9-11" or "74".
Only one of imageMetadataLabelName, name, imageMetadataLabelArchitecture and
subId can be presented.
public abstract String reason
Copyright © 2025. All rights reserved.