Autoimports tests has been updated.
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
// "Import Class" "true"
|
// "Import" "true"
|
||||||
package some
|
package some
|
||||||
|
|
||||||
import kotlin.util.measureTimeNano
|
import kotlin.util.measureTimeNano
|
||||||
|
|
||||||
fun testFun() {
|
fun testFun() {
|
||||||
measureTimeNano()
|
measureTimeNano()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// "Import Class" "true"
|
// "Import" "true"
|
||||||
package some
|
package some
|
||||||
|
|
||||||
fun testFun() {
|
fun testFun() {
|
||||||
<caret>measureTimeNano()
|
<caret>measureTimeNano()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
// "Import Class" "true"
|
// "Import" "true"
|
||||||
|
|
||||||
import TestData.TestSample
|
import TestData.TestSample
|
||||||
|
|
||||||
fun test() {
|
fun test() {
|
||||||
val a = TestSample
|
val a = TestSample
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
// "Import Class" "true"
|
// "Import" "true"
|
||||||
|
|
||||||
fun test() {
|
fun test() {
|
||||||
val a = <caret>TestSample
|
val a = <caret>TestSample
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// "Import Class" "true"
|
// "Import" "true"
|
||||||
package testingExtensionFunctionsImport
|
package testingExtensionFunctionsImport
|
||||||
|
|
||||||
import testingExtensionFunctionsImport.data.someFun
|
import testingExtensionFunctionsImport.data.someFun
|
||||||
@@ -6,4 +6,4 @@ import testingExtensionFunctionsImport.data.someFun
|
|||||||
fun some() {
|
fun some() {
|
||||||
val str = ""
|
val str = ""
|
||||||
str.someFun()
|
str.someFun()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
// "Import Class" "true"
|
// "Import" "true"
|
||||||
package testingExtensionFunctionsImport
|
package testingExtensionFunctionsImport
|
||||||
|
|
||||||
fun some() {
|
fun some() {
|
||||||
val str = ""
|
val str = ""
|
||||||
str.<caret>someFun()
|
str.<caret>someFun()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
// "Import Class" "true"
|
// "Import" "true"
|
||||||
package functionimporttest
|
package functionimporttest
|
||||||
|
|
||||||
import functionimporttest.data.someTestFun
|
import functionimporttest.data.someTestFun
|
||||||
|
|
||||||
fun functionImportTest() {
|
fun functionImportTest() {
|
||||||
someTestFun()
|
someTestFun()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// "Import Class" "true"
|
// "Import" "true"
|
||||||
package functionimporttest
|
package functionimporttest
|
||||||
|
|
||||||
fun functionImportTest() {
|
fun functionImportTest() {
|
||||||
<caret>someTestFun()
|
<caret>someTestFun()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user