Removed doTest(char), since it was erroneous.
If lookupString and tailText are both null, completionChar is ignored.
This commit is contained in:
@@ -80,7 +80,7 @@ public class CompletionHandlerTest extends LightCompletionTestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void testFunctionLiteralInsertOnSpace() {
|
public void testFunctionLiteralInsertOnSpace() {
|
||||||
doTest(' ');
|
doTest(CompletionType.BASIC, 2, null, null, ' ');
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testInsertImportOnTab() {
|
public void testInsertImportOnTab() {
|
||||||
@@ -108,11 +108,7 @@ public class CompletionHandlerTest extends LightCompletionTestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void doTest() {
|
public void doTest() {
|
||||||
doTest('\n');
|
doTest(CompletionType.BASIC, 2, null, null, '\n');
|
||||||
}
|
|
||||||
|
|
||||||
public void doTest(char completionChar) {
|
|
||||||
doTest(CompletionType.BASIC, 2, null, null, completionChar);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void doTest(CompletionType type, int time, @Nullable String lookupString, @Nullable String tailText, char completionChar) {
|
public void doTest(CompletionType type, int time, @Nullable String lookupString, @Nullable String tailText, char completionChar) {
|
||||||
|
|||||||
Reference in New Issue
Block a user