removed obsolete test
no more error 'NO_GET_METHOD' when there's get method with inappropriate signature
This commit is contained in:
@@ -1,11 +0,0 @@
|
|||||||
// "Create function 'get' from usage" "true"
|
|
||||||
import java.util.ArrayList
|
|
||||||
|
|
||||||
class Foo<T> {
|
|
||||||
fun <T, V> x (y: java.util.ArrayList<T>, w: java.util.ArrayList<V>) {
|
|
||||||
val z: java.util.ArrayList<T>? = if (y["", w]) null else null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
fun <E, V> ArrayList<E>.get(s: String, w: ArrayList<V>): Boolean {
|
|
||||||
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
||||||
}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
// "Create function 'get' from usage" "true"
|
|
||||||
class Foo<T> {
|
|
||||||
fun <T, V> x (y: java.util.ArrayList<T>, w: java.util.ArrayList<V>) {
|
|
||||||
val z: java.util.ArrayList<T>? = if (y<caret>["", w]) null else null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -540,11 +540,6 @@ public class QuickFixTestGenerated extends AbstractQuickFixTest {
|
|||||||
doTest("idea/testData/quickfix/createFromUsage/get/beforeCreateGetFromUsage5.kt");
|
doTest("idea/testData/quickfix/createFromUsage/get/beforeCreateGetFromUsage5.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
@TestMetadata("beforeCreateGetFromUsage6.kt")
|
|
||||||
public void testCreateGetFromUsage6() throws Exception {
|
|
||||||
doTest("idea/testData/quickfix/createFromUsage/get/beforeCreateGetFromUsage6.kt");
|
|
||||||
}
|
|
||||||
|
|
||||||
@TestMetadata("beforeCreateGetFromUsage7.kt")
|
@TestMetadata("beforeCreateGetFromUsage7.kt")
|
||||||
public void testCreateGetFromUsage7() throws Exception {
|
public void testCreateGetFromUsage7() throws Exception {
|
||||||
doTest("idea/testData/quickfix/createFromUsage/get/beforeCreateGetFromUsage7.kt");
|
doTest("idea/testData/quickfix/createFromUsage/get/beforeCreateGetFromUsage7.kt");
|
||||||
|
|||||||
Reference in New Issue
Block a user