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,5 @@
public class Main {
public static void main(String args[]) {
Singleton.getInstance();
}
}
@@ -0,0 +1,7 @@
pubic class Singleton {
private static Singleton ourInstance = new Singleton();
public Singleton getInstance() {
return ourInstance;
}
}