Skip to content

Commit

Permalink
add allure id annotation (via allure-framework#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
baev authored Jan 14, 2019
1 parent 3fcc058 commit cd7bfac
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions allure-java-commons/src/main/java/io/qameta/allure/AllureId.java
Original file line number Diff line number Diff line change
@@ -0,0 1,21 @@
package io.qameta.allure;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
* Used by Allure Enterprise to link test cases with related test methods.
*/
@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface AllureId {

String value();

}

0 comments on commit cd7bfac

Please sign in to comment.