1 package org.junit; 2 3 import java.lang.annotation.ElementType ; 4 import java.lang.annotation.Retention ; 5 import java.lang.annotation.RetentionPolicy ; 6 import java.lang.annotation.Target ; 7 8 24 @Retention (RetentionPolicy.RUNTIME) 25 @Target ({ElementType.METHOD, ElementType.TYPE}) 26 public @interface Ignore { 27 30 String value() default ""; 31 } 32 | Popular Tags |