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,10 @@
interface A {
public void <caret>foo();
}
abstract class C implements B {
@Override
public void foo() {
}
}
@@ -0,0 +1,5 @@
interface A {
}
abstract class C implements B {
}
@@ -0,0 +1,11 @@
interface B: A {
public override fun foo() {
throw UnsupportedOperationException()
}
}
class D: C() {
public override fun foo() {
throw UnsupportedOperationException()
}
}
@@ -0,0 +1,5 @@
interface B: A {
}
class D: C() {
}
@@ -0,0 +1,10 @@
interface A {
public void foo();
}
abstract class C implements B {
@Override
public void <caret>foo() {
}
}
@@ -0,0 +1,6 @@
interface A {
public void foo();
}
abstract class C implements B {
}
@@ -0,0 +1,11 @@
interface B: A {
public override fun foo() {
throw UnsupportedOperationException()
}
}
class D: C() {
public override fun foo() {
throw UnsupportedOperationException()
}
}
@@ -0,0 +1,8 @@
interface B: A {
public override fun foo() {
throw UnsupportedOperationException()
}
}
class D: C() {
}