All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.thucydides.core.annotations.Issue Maven / Gradle / Ivy

package net.thucydides.core.annotations;

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

/**
 * Used to indicate that a test case or test relates to a particular issue or story card in the issue tracking system.
 *
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface Issue {
    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy