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:
Valentin Kipyatkov
2015-04-13 18:11:53 +03:00
parent 63825c45dd
commit bb808b5620
1303 changed files with 1741 additions and 1733 deletions
-13
View File
@@ -1,13 +0,0 @@
/**
* [<caret>]
*/
fun f(xyzzy: String) {
}
fun bar() {
}
// EXIST: xyzzy
// EXIST: bar
@@ -1,8 +0,0 @@
/**
* @param <caret>
*/
fun foo(xyzzy: Int, foobar: String) {
}
// EXIST: xyzzy
// EXIST: foobar
@@ -1,9 +0,0 @@
/**
* @param xyzzy This is a xyzzy
* @param <caret>
*/
fun foo(xyzzy: Int, foobar: String) {
}
// ABSENT: xyzzy
// EXIST: foobar
-8
View File
@@ -1,8 +0,0 @@
/**
* <caret>
*/
fun f(x: Int): Int {
}
// EXIST: @param
// EXIST: @return
@@ -1,8 +0,0 @@
/**
* @<caret>
*/
fun f(x: Int): Int {
}
// EXIST: @param
// EXIST: @return
@@ -1,8 +0,0 @@
/**
* @r<caret>
*/
fun f(x: Int): Int {
}
// ABSENT: @param
// EXIST: @return
@@ -1,6 +0,0 @@
/** <caret> */
fun f(x: Int): Int {
}
// EXIST: @param
// EXIST: @return