mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
middle matching with one char prefix
This commit is contained in:
+1
-1
@@ -54,7 +54,7 @@ public class JavadocCompletionTest extends LightFixtureCompletionTestCase {
|
||||
|
||||
public void testNamesInMethod1() throws Exception {
|
||||
configureByFile("MethodTagName1.java");
|
||||
assertStringItems("see", "serialData", "since");
|
||||
assertStringItems("see", "serialData", "since", "class", "throws");
|
||||
}
|
||||
|
||||
public void testParamValueCompletion() throws Exception {
|
||||
|
||||
+2
-2
@@ -450,7 +450,7 @@ public class SmartTypeCompletionTest extends LightFixtureCompletionTestCase {
|
||||
|
||||
public void testNoUninitializedFieldsInConstructor() throws Throwable {
|
||||
configureByTestName();
|
||||
assertStringItems("aac", "aab");
|
||||
assertStringItems("aac", "aab", "hashCode");
|
||||
}
|
||||
public void testFieldsSetInAnotherConstructor() throws Throwable { doTest(); }
|
||||
public void testFieldsSetAbove() throws Throwable { doTest(); }
|
||||
@@ -471,7 +471,7 @@ public class SmartTypeCompletionTest extends LightFixtureCompletionTestCase {
|
||||
public void testVoidExpectedType() throws Throwable {
|
||||
configureByTestName();
|
||||
assertStringItems("notify", "notifyAll", "wait", "wait", "wait", "getClass", "equals", "hashCode", "toString");
|
||||
type('e');
|
||||
type("eq");
|
||||
assertEquals("equals", assertOneElement(getLookup().getItems()).getLookupString());
|
||||
select();
|
||||
checkResultByTestName();
|
||||
|
||||
Reference in New Issue
Block a user