mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-06 05:10:22 +07:00
24 lines
613 B
Java
24 lines
613 B
Java
package com.intellij.codeInsight.defaultAction;
|
|
|
|
import com.intellij.JavaTestUtil;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class JavaRBracketTest extends DefaultActionTestCase {
|
|
@Override
|
|
protected @NotNull String getTestDataPath() {
|
|
return JavaTestUtil.getJavaTestDataPath();
|
|
}
|
|
|
|
public void test1() { doTest(); }
|
|
|
|
public void test2() { doTest(); }
|
|
|
|
private void doTest() {
|
|
String path = "/codeInsight/defaultAction/rbracket/";
|
|
|
|
configureByFile(path + getTestName(false) + ".java");
|
|
performAction(']');
|
|
checkResultByFile(path + getTestName(false) + "_after.java");
|
|
}
|
|
}
|