mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
21 lines
399 B
Java
21 lines
399 B
Java
|
|
package com.intellij.codeInsight.daemon.quickFix;
|
|
|
|
import com.intellij.pom.java.LanguageLevel;
|
|
|
|
|
|
|
|
public class ChangeParameterClassTest extends LightQuickFix15TestCase {
|
|
|
|
public void test() throws Exception {
|
|
setLanguageLevel(LanguageLevel.JDK_1_5);
|
|
doAllTests();
|
|
}
|
|
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/changeParameterClass";
|
|
}
|
|
|
|
}
|
|
|