Test completion of single file facades in java

This commit is contained in:
Pavel V. Talanov
2015-09-07 14:08:51 +03:00
parent 8cb7ea29fe
commit daaefcc7fd
9 changed files with 85 additions and 0 deletions
@@ -0,0 +1,9 @@
public class Testing {
void f() {
facades.Renamed<caret>
}
}
// EXIST: RenamedNew
// ABSENT: RenamedFileFacadeKt
@@ -0,0 +1,8 @@
public class Testing {
void f() {
mockLib.foo.Mai<caret>
}
}
// EXIST: MainKt
@@ -0,0 +1,11 @@
public class Testing {
void f() {
mockLib.foo.MainKt.<caret>
}
}
// EXIST: topLevelFunction
// EXIST: topLevelExtFunction
// EXIST: getTopLevelVar
// EXIST: setTopLevelVar
@@ -0,0 +1,6 @@
@file:JvmName("RenamedNew")
package facades
fun foo() {
}