mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
16 lines
320 B
Java
16 lines
320 B
Java
package com.intellij.codeInsight.daemon.quickFix;
|
|
|
|
public class AddVariableInitializerTest extends LightQuickFixTestCase {
|
|
|
|
public void test() throws Exception {
|
|
doAllTests();
|
|
}
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/addVariableInitializer";
|
|
}
|
|
|
|
}
|
|
|