1 package pt.digitalis.dif.sanitycheck.annotations;
2
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Inherited;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.RetentionPolicy;
7 import java.lang.annotation.Target;
8
9 /**
10 * @author Pedro Viegas <a href="mailto:pviegas@digitalis.pt">pviegas@digitalis.pt</a><br/>
11 * @created 14 de Jul de 2011
12 */
13 @Inherited
14 @Retention(RetentionPolicy.RUNTIME)
15 @Target(ElementType.TYPE)
16 public @interface SanityCheckDependency {
17
18 /**
19 * The name of the SanityCheckTestSuite that must be ran before the current declared test suite
20 *
21 * @return the name
22 */
23 public String value();
24 }