mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
16 lines
423 B
Java
16 lines
423 B
Java
package com.intellij.codeInsight.intention;
|
|
|
|
import com.intellij.codeInsight.daemon.LightIntentionActionTestCase;
|
|
|
|
/**
|
|
* @author ven
|
|
*/
|
|
public class MoveInitializerToConstructorActionTest extends LightIntentionActionTestCase {
|
|
public void test() throws Exception { doAllTests(); }
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/moveInitializerToConstructor";
|
|
}
|
|
}
|