mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-19 01:09:52 +07:00
19 lines
470 B
Java
19 lines
470 B
Java
package com.intellij.codeInsight.daemon.quickFix;
|
|
|
|
import com.intellij.pom.java.LanguageLevel;
|
|
|
|
public class RemoveRedundantArgumentTest extends LightQuickFixParameterizedTestCase {
|
|
|
|
public void test() throws Exception { doAllTests(); }
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument";
|
|
}
|
|
|
|
@Override
|
|
protected LanguageLevel getLanguageLevel() {
|
|
return LanguageLevel.JDK_1_7;
|
|
}
|
|
}
|