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 associate a test with a particular reauirement or issue. * */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) public @interface TestsRequirement { String value(); }