diff --git a/plugins/android-compiler-plugin/testData/android/fakeHelpers/Activity.kt b/plugins/android-compiler-plugin/testData/android/fakeHelpers/Activity.kt deleted file mode 100644 index 08eb86d4f26..00000000000 --- a/plugins/android-compiler-plugin/testData/android/fakeHelpers/Activity.kt +++ /dev/null @@ -1,6 +0,0 @@ -package android.app -import android.view.View - -abstract class Activity { - open abstract fun findViewById(id: Int): View? -} \ No newline at end of file diff --git a/plugins/android-compiler-plugin/testData/android/fakeHelpers/View.kt b/plugins/android-compiler-plugin/testData/android/fakeHelpers/View.kt deleted file mode 100644 index c5b8f7610f0..00000000000 --- a/plugins/android-compiler-plugin/testData/android/fakeHelpers/View.kt +++ /dev/null @@ -1,3 +0,0 @@ -package android.view - -trait View \ No newline at end of file diff --git a/plugins/android-compiler-plugin/testData/android/fakeHelpers/Widgets.kt b/plugins/android-compiler-plugin/testData/android/fakeHelpers/Widgets.kt deleted file mode 100644 index 2f1d5ba5884..00000000000 --- a/plugins/android-compiler-plugin/testData/android/fakeHelpers/Widgets.kt +++ /dev/null @@ -1,16 +0,0 @@ -package android.widget - -import android.view.View - -class EditText: View { - override fun toString(): String {return "EditText"} -} -class TextView: View { - override fun toString(): String {return "TextView"} -} -class Button: View { - override fun toString(): String {return "Button"} -} -class FrameLayout: View { - override fun toString(): String {return "FrameLayout"} -} \ No newline at end of file