do not flag dead code if custom JUnit runner is used (IDEA-25444)

This commit is contained in:
anna
2009-10-29 12:40:03 +03:00
parent 18839484a5
commit 876dc8587e
78 changed files with 646 additions and 2 deletions
@@ -0,0 +1,6 @@
import java.lang.annotation.*;
@Target({ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE})
public @interface Test {
String value() default "";
}