Do not show "assertFailsWith" in any smart completion
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import kotlin.test.*
|
||||
|
||||
interface I<T>
|
||||
|
||||
fun <T> foo(i: I<T>){}
|
||||
|
||||
fun bar() {
|
||||
foo(ass<caret>)
|
||||
}
|
||||
|
||||
// ABSENT: assertFailsWith
|
||||
+6
@@ -323,6 +323,12 @@ public class JvmSmartCompletionTestGenerated extends AbstractJvmSmartCompletionT
|
||||
doTest(fileName);
|
||||
}
|
||||
|
||||
@TestMetadata("NoAssertFailsWith.kt")
|
||||
public void testNoAssertFailsWith() throws Exception {
|
||||
String fileName = KotlinTestUtils.navigationMetadata("idea/idea-completion/testData/smart/NoAssertFailsWith.kt");
|
||||
doTest(fileName);
|
||||
}
|
||||
|
||||
@TestMetadata("NoExtensionMethodFromClassObject.kt")
|
||||
public void testNoExtensionMethodFromClassObject() throws Exception {
|
||||
String fileName = KotlinTestUtils.navigationMetadata("idea/idea-completion/testData/smart/NoExtensionMethodFromClassObject.kt");
|
||||
|
||||
Reference in New Issue
Block a user