package net.thucydides.junit.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Used to mark a method as a qualifier in an instantiated data-driven test case. */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Qualifier { }