Annotation Type Issues


  • @Retention(RUNTIME)
    @Target(TYPE)
    public @interface Issues
    In order to trace your tests and issuetracker simply annotate test suite or test case with the Issues annotation. This annotation can take either one string or a string array because one test case can relate to several issues:

    Usage example:

     @Issues("JIRA-1", "JIRA-3")
     public class MyTest1() {
     }
    
     @Issues("JIRA-1")
     public void MyTest2() {
     }
     
    Since:
    2.0.0
    Author:
    Oliver Libutzki <[email protected]>
    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String[] value
      The issues (ticket numbers)
    • Element Detail

      • value

        java.lang.String[] value
        The issues (ticket numbers)
        Returns:
        the issues
        Since:
        2.0.0