Move: Update test data for tests with conflicts

Check refactoring result for the case when conflicts are ignored.
Fix move destination when moving to another source root
This commit is contained in:
Alexey Sedunov
2017-03-20 12:22:28 +03:00
parent 38f9e99d91
commit 9a3ace423a
59 changed files with 155 additions and 100 deletions
@@ -1,9 +1,9 @@
public class A {
public static void foo(String s) {
System.out.println(s)
}
}
public class B {
private static void foo(String s) {
System.out.println(s)
}
}
@@ -1,3 +1,3 @@
fun bar(s: String) {
A.foo(s)
B.foo(s)
}
@@ -1,5 +1,5 @@
import A.*
fun bar(s: String) {
foo(s)
B.foo(s)
}
@@ -1,4 +1,4 @@
import A.foo as foofoo
import B.foo as foofoo
fun bar(s: String) {
foofoo(s)