Safe Delete: Move test classes and test data to refactoring directory

This commit is contained in:
Alexey Sedunov
2015-12-08 16:32:16 +03:00
parent a76f43b66c
commit ffc8b6fd89
504 changed files with 229 additions and 229 deletions
@@ -0,0 +1,6 @@
abstract class C implements B {
@Override
public String <caret>getFoo() {
return "C";
}
}
@@ -0,0 +1,2 @@
abstract class C implements B {
}
@@ -0,0 +1,10 @@
interface B {
public val foo: String
}
class D: B {
public override val foo: String
get() {
return "D"
}
}
@@ -0,0 +1,10 @@
interface B {
public val foo: String
}
class D: B {
public override val foo: String
get() {
return "D"
}
}
@@ -0,0 +1,6 @@
class C implements B {
@Override
public String <caret>getFoo() {
return "C";
}
}
@@ -0,0 +1,10 @@
interface B {
public val foo: String
}
class D: B {
public override val foo: String
get() {
return "D"
}
}
@@ -0,0 +1 @@
method C.getFoo() implements property B.foo.
@@ -0,0 +1,11 @@
abstract class C implements B {
@Override
public String <caret>getFoo() {
return "C";
}
@Override
public void setFoo(String value) {
}
}
@@ -0,0 +1,7 @@
abstract class C implements B {
@Override
public void setFoo(String value) {
}
}
@@ -0,0 +1,13 @@
interface B {
public var foo: String
}
class D: B {
public override var foo: String
get() {
return "D"
}
set(value: String) {
println()
}
}
@@ -0,0 +1,13 @@
interface B {
public var foo: String
}
class D: B {
public override var foo: String
get() {
return "D"
}
set(value: String) {
println()
}
}
@@ -0,0 +1,11 @@
class C implements B {
@Override
public String <caret>getFoo() {
return "C";
}
@Override
public void setFoo(String value) {
}
}
@@ -0,0 +1,13 @@
interface B {
public var foo: String
}
class D: B {
public override var foo: String
get() {
return "D"
}
set(value: String) {
println()
}
}
@@ -0,0 +1 @@
method C.getFoo() implements property B.foo.
@@ -0,0 +1,11 @@
abstract class C implements B {
@Override
public String getFoo() {
return "C";
}
@Override
public void <caret>setFoo(String value) {
}
}
@@ -0,0 +1,7 @@
abstract class C implements B {
@Override
public String getFoo() {
return "C";
}
}
@@ -0,0 +1,13 @@
interface B {
public var foo: String
}
class D: B {
public override var foo: String
get() {
return "D"
}
set(value: String) {
println()
}
}
@@ -0,0 +1,13 @@
interface B {
public var foo: String
}
class D: B {
public override var foo: String
get() {
return "D"
}
set(value: String) {
println()
}
}
@@ -0,0 +1,11 @@
class C implements B {
@Override
public String getFoo() {
return "C";
}
@Override
public void <caret>setFoo(String value) {
}
}
@@ -0,0 +1,13 @@
interface B {
public var foo: String
}
class D: B {
public override var foo: String
get() {
return "D"
}
set(value: String) {
println()
}
}
@@ -0,0 +1 @@
method C.setFoo(String) implements property B.foo.