add junit to classpath when annotation FQN is used (IDEA-64909)

This commit is contained in:
anna
2011-02-02 15:51:48 +01:00
parent f222c002ea
commit 431aaa09b8
3 changed files with 34 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
// "Add 'junit.jar' to classpath" "true"
package x;
public class DoTest4junit {
@org.ju<caret>nit.Test
void f() {
}
}