We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fcc058 commit cd7bfacCopy full SHA for cd7bfac
1 file changed
allure-java-commons/src/main/java/io/qameta/allure/AllureId.java
@@ -0,0 +1,21 @@
1
+package io.qameta.allure;
2
+
3
+import java.lang.annotation.Documented;
4
+import java.lang.annotation.ElementType;
5
+import java.lang.annotation.Inherited;
6
+import java.lang.annotation.Retention;
7
+import java.lang.annotation.RetentionPolicy;
8
+import java.lang.annotation.Target;
9
10
+/**
11
+ * Used by Allure Enterprise to link test cases with related test methods.
12
+ */
13
+@Documented
14
+@Inherited
15
+@Retention(RetentionPolicy.RUNTIME)
16
+@Target({ElementType.METHOD})
17
+public @interface AllureId {
18
19
+ String value();
20
21
+}
0 commit comments