mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
remove superfluous test
This commit is contained in:
@@ -45,26 +45,6 @@ public class CompletionStyleTest extends LightCodeInsightTestCase{
|
||||
checkResultByFile(path + "/after1.java");
|
||||
}
|
||||
|
||||
public void testIDEADEV4566() throws Exception {
|
||||
configureFromFileText(
|
||||
"A.java",
|
||||
"public class A {\n" +
|
||||
" public static Object createA(String s) {}\n" +
|
||||
" public static void foo() {\n" +
|
||||
" createA(<caret>);\n" +
|
||||
" }\n" +
|
||||
"}");
|
||||
performSmartCompletion();
|
||||
select(Lookup.NORMAL_SELECT_CHAR, 0);
|
||||
checkResultByText(
|
||||
"public class A {\n" +
|
||||
" public static Object createA(String s) {}\n" +
|
||||
" public static void foo() {\n" +
|
||||
" createA(String.copyValueOf(<caret>));\n" +
|
||||
" }\n" +
|
||||
"}");
|
||||
}
|
||||
|
||||
public void testIDEADEV5935() throws Exception {
|
||||
configureFromFileText("A.java",
|
||||
"public class A {\n" +
|
||||
|
||||
Reference in New Issue
Block a user