mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
[tests] moves move default package tests in a dedicated class
This commit is contained in:
-5
@@ -1,5 +0,0 @@
|
||||
public class Test {
|
||||
public Test(int i) {
|
||||
new x();
|
||||
}
|
||||
}
|
||||
-1
@@ -1 +0,0 @@
|
||||
class x { }
|
||||
-7
@@ -1,7 +0,0 @@
|
||||
package x;
|
||||
|
||||
import x.n.*;
|
||||
|
||||
class Foos2 {
|
||||
Test t = new Test();
|
||||
}
|
||||
-5
@@ -1,5 +0,0 @@
|
||||
package x;
|
||||
|
||||
class InvalidUse {
|
||||
<error descr="Cannot resolve symbol 'Test'">Test</error> t = null;
|
||||
}
|
||||
-7
@@ -1,7 +0,0 @@
|
||||
package x;
|
||||
|
||||
import x.n.Test;
|
||||
|
||||
class Foos {
|
||||
Test t = new Test();
|
||||
}
|
||||
-2
@@ -1,2 +0,0 @@
|
||||
package x.n;
|
||||
public class Test {}
|
||||
Reference in New Issue
Block a user