package Sequenic.T2; import java.lang.annotation.*; /** * Define some annotations for T2. */ public class T2annotation { /** * Annotation to mark that a member of CUT should be excluded * from T2 testing. */ @Retention(RetentionPolicy.RUNTIME) public @interface exclude{ } @Retention(RetentionPolicy.RUNTIME) public @interface option{ String value() ; } /** * Marks the min and max (inclusive) of generated int values. */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface IntRange { int min(); int max(); } }