Fix test data for reconcile package with directory test
(cherry picked from commit b926e02)
This commit is contained in:
committed by
Dmitry Petrov
parent
abca7107a7
commit
fd893ba499
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
class Test {
|
class Test {
|
||||||
static void test() {
|
static void test() {
|
||||||
new Foo();
|
new Foo();
|
||||||
_DefaultPackage.foo();
|
TestKt.foo();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
import static _DefaultPackage.foo;
|
import static TestKt.foo;
|
||||||
|
|
||||||
class Test {
|
class Test {
|
||||||
static void test() {
|
static void test() {
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
class Test {
|
class Test {
|
||||||
static void test() {
|
static void test() {
|
||||||
new source.Foo();
|
new source.Foo();
|
||||||
source.SourcePackage.foo();
|
source.TestKt.foo();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
import source.Foo;
|
import source.Foo;
|
||||||
import static source.SourcePackage.foo;
|
import static source.TestKt.foo;
|
||||||
|
|
||||||
class Test {
|
class Test {
|
||||||
static void test() {
|
static void test() {
|
||||||
|
|||||||
+1
-1
@@ -3,6 +3,6 @@ package target;
|
|||||||
class Test {
|
class Test {
|
||||||
static void test() {
|
static void test() {
|
||||||
new Foo();
|
new Foo();
|
||||||
TargetPackage.foo();
|
TestKt.foo();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
package target;
|
package target;
|
||||||
|
|
||||||
import static target.TargetPackage.foo;
|
import static target.TestKt.foo;
|
||||||
|
|
||||||
class Test {
|
class Test {
|
||||||
static void test() {
|
static void test() {
|
||||||
|
|||||||
+2
-2
@@ -1,11 +1,11 @@
|
|||||||
package usages;
|
package usages;
|
||||||
|
|
||||||
import target.Foo;
|
import target.Foo;
|
||||||
import target.TargetPackage;
|
import target.TestKt;
|
||||||
|
|
||||||
class Test {
|
class Test {
|
||||||
static void test() {
|
static void test() {
|
||||||
new Foo();
|
new Foo();
|
||||||
TargetPackage.foo();
|
TestKt.foo();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
package usages;
|
package usages;
|
||||||
|
|
||||||
import target.Foo;
|
import target.Foo;
|
||||||
import static target.TargetPackage.foo;
|
import static target.TestKt.foo;
|
||||||
|
|
||||||
class Test {
|
class Test {
|
||||||
static void test() {
|
static void test() {
|
||||||
|
|||||||
+1
-1
@@ -3,6 +3,6 @@ package target;
|
|||||||
class Test {
|
class Test {
|
||||||
static void test() {
|
static void test() {
|
||||||
new source.Foo();
|
new source.Foo();
|
||||||
source.SourcePackage.foo();
|
source.TestKt.foo();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
package target;
|
package target;
|
||||||
|
|
||||||
import source.Foo;
|
import source.Foo;
|
||||||
import static source.SourcePackage.foo;
|
import static source.TestKt.foo;
|
||||||
|
|
||||||
class Test {
|
class Test {
|
||||||
static void test() {
|
static void test() {
|
||||||
|
|||||||
+1
-1
@@ -3,6 +3,6 @@ package usages;
|
|||||||
class Test {
|
class Test {
|
||||||
static void test() {
|
static void test() {
|
||||||
new source.Foo();
|
new source.Foo();
|
||||||
source.SourcePackage.foo();
|
source.TestKt.foo();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
package usages;
|
package usages;
|
||||||
|
|
||||||
import source.Foo;
|
import source.Foo;
|
||||||
import static source.SourcePackage.foo;
|
import static source.TestKt.foo;
|
||||||
|
|
||||||
class Test {
|
class Test {
|
||||||
static void test() {
|
static void test() {
|
||||||
|
|||||||
Reference in New Issue
Block a user