From 25f7c139e041989f7c3d4bc4c500994f809c89f2 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Tue, 27 Dec 2011 15:51:13 +0400 Subject: [PATCH] Remove invalid tests (valid tests are already exist) --- .../quickfix/autoImports/afterImportSingleFile.kt | 12 ------------ .../autoImports/beforeImportSingleFile.kt | 10 ---------- .../quickfix/classImport/afterToImport2.kt | 15 --------------- .../quickfix/classImport/beforeToImport2.kt | 13 ------------- 4 files changed, 50 deletions(-) delete mode 100644 idea/testData/quickfix/autoImports/afterImportSingleFile.kt delete mode 100644 idea/testData/quickfix/autoImports/beforeImportSingleFile.kt delete mode 100644 idea/testData/quickfix/classImport/afterToImport2.kt delete mode 100644 idea/testData/quickfix/classImport/beforeToImport2.kt diff --git a/idea/testData/quickfix/autoImports/afterImportSingleFile.kt b/idea/testData/quickfix/autoImports/afterImportSingleFile.kt deleted file mode 100644 index 56c6f85e48a..00000000000 --- a/idea/testData/quickfix/autoImports/afterImportSingleFile.kt +++ /dev/null @@ -1,12 +0,0 @@ -// "Import Class" "true" -package a - -import a.b.M - -fun test() { - val v = M -} - -package b { - class M() { } -} \ No newline at end of file diff --git a/idea/testData/quickfix/autoImports/beforeImportSingleFile.kt b/idea/testData/quickfix/autoImports/beforeImportSingleFile.kt deleted file mode 100644 index 8f5fba3bc80..00000000000 --- a/idea/testData/quickfix/autoImports/beforeImportSingleFile.kt +++ /dev/null @@ -1,10 +0,0 @@ -// "Import Class" "true" -package a - -fun test() { - val v = M -} - -package b { - class M() { } -} \ No newline at end of file diff --git a/idea/testData/quickfix/classImport/afterToImport2.kt b/idea/testData/quickfix/classImport/afterToImport2.kt deleted file mode 100644 index dd84c5795bd..00000000000 --- a/idea/testData/quickfix/classImport/afterToImport2.kt +++ /dev/null @@ -1,15 +0,0 @@ -// "Remove initializer from property" "true" -package a - -import java.util.Collections - -package b { - -import java.util.List - -class M { - trait A { - abstract val l : List? - } -} -} \ No newline at end of file diff --git a/idea/testData/quickfix/classImport/beforeToImport2.kt b/idea/testData/quickfix/classImport/beforeToImport2.kt deleted file mode 100644 index c22f5e31656..00000000000 --- a/idea/testData/quickfix/classImport/beforeToImport2.kt +++ /dev/null @@ -1,13 +0,0 @@ -// "Remove initializer from property" "true" -package a - -import java.util.Collections - -package b { - -class M { - trait A { - abstract val l = Collections.emptyList() - } -} -} \ No newline at end of file