Updated tests #KT-23546 Comment

This commit is contained in:
Alexander Podkhalyuzin
2018-04-06 13:58:00 +03:00
parent 9667214b64
commit 5a752da9e9
3 changed files with 9 additions and 3 deletions
@@ -1,6 +1,8 @@
class Foo
class BarFoo
lateinit var f<caret>
// EXIST: { itemText: "foo: Foo" }
// EXIST: { itemText: "foo: Foo" }
// EXIST: { itemText: "foo: BarFoo" }
@@ -1,8 +1,10 @@
class Foo
class BarFoo
fun test() {
var f<caret>
}
// EXIST: { itemText: "foo", tailText: ": Foo (<root>)" }
// EXIST: { itemText: "foo", tailText: ": Foo (<root>)" }
// ABSENT: { itemText: "foo", tailText: ": BarFoo (<root>)" }
@@ -1,6 +1,8 @@
class Foo
class BarFoo
val f<caret>
// EXIST: { itemText: "foo", tailText: ": Foo (<root>)" }
// EXIST: { itemText: "foo", tailText: ": Foo (<root>)" }
// ABSENT: { itemText: "foo", tailText: ": BarFoo (<root>)" }