Created module idea-test-framework and moved classes needed for idea tests there
Moved tests for completion and their test data into module idea-completion
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
fun foo() {
|
||||
@myFor
|
||||
for (i in 1..10) {
|
||||
@myWhile
|
||||
while (x()) {
|
||||
@myDo
|
||||
do {
|
||||
break@<caret>
|
||||
} while (y())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// EXIST: { lookupString: "break@myDo", itemText: "break", tailText: "@myDo", attributes: "bold" }
|
||||
// EXIST: { lookupString: "break@myWhile", itemText: "break", tailText: "@myWhile", attributes: "bold" }
|
||||
// EXIST: { lookupString: "break@myFor", itemText: "break", tailText: "@myFor", attributes: "bold" }
|
||||
// NUMBER: 3
|
||||
Reference in New Issue
Block a user