Package cz.xtf.junit5.annotations
Annotation Type SkipFor
-
@Retention(RUNTIME) @Target({METHOD,TYPE}) @Repeatable(SkipFors.class) @ExtendWith(SkipForCondition.class) public @interface SkipFor
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description StringimageMetadataLabelArchitectureArchitecture or regexp pattern matching architecture inDocker Labelsin image metadata For example "x86_64" or "x86_.*".StringimageMetadataLabelNameName or regexp pattern matching name inDocker Labelsin image metadata For example "jboss-eap-7/eap73-openjdk11-openshift-rhel8" or "eap73-openjdk11-.*".StringnameName or regexp pattern matching name of the image.StringreasonStringsubIdName or regexp pattern matching the value of thextf.<product id>>.subidXTF 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".
-
-
-
Element Detail
-
image
String image
-
-
-
name
String name
Name or regexp pattern matching name of the image. For example "eap73-openjdk11-openshift-rhel8" or "eap73-openjdk11-.*"Only one of
name,imageMetadataLabelName,imageMetadataLabelArchitectureandsubIdcan be presented.- Default:
- ""
-
-
-
imageMetadataLabelName
String imageMetadataLabelName
Name or regexp pattern matching name inDocker Labelsin image metadata For example "jboss-eap-7/eap73-openjdk11-openshift-rhel8" or "eap73-openjdk11-.*".Only one of
name,imageMetadataLabelName,imageMetadataLabelArchitectureandsubIdcan be presented.- Default:
- ""
-
-
-
imageMetadataLabelArchitecture
String imageMetadataLabelArchitecture
Architecture or regexp pattern matching architecture inDocker Labelsin image metadata For example "x86_64" or "x86_.*".Only one of
name,imageMetadataLabelName,imageMetadataLabelArchitectureandsubIdcan be presented.- Default:
- ""
-
-
-
subId
String subId
Name or regexp pattern matching the value of thextf.<product id>>.subidXTF 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,imageMetadataLabelArchitectureandsubIdcan be presented.- Default:
- ""
-
-
-
reason
String reason
- Default:
- ""
-
-