make tests more independent from all/imported classes behavior

This commit is contained in:
peter
2013-08-31 11:10:18 +02:00
parent fa68185dd2
commit 445acfb2d0
6 changed files with 23 additions and 23 deletions
@@ -1,6 +1,12 @@
class Util {
{
FooZoo<caret>
Another.fooZoo<caret>
}
}
class Another {
private static void fooZoo() {}
static void fooZooGoo() {}
static void fooZooImpl() {}
}
@@ -1,6 +1,6 @@
interface FooIntf {}
class FooClass {}
class Foo {}
interface XFooIntf {}
class XFooClass {}
class XFoo {}
class Goo implements Fo<caret> {
class Goo implements XFo<caret> {
}