mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
16 lines
431 B
Java
16 lines
431 B
Java
package com.intellij.codeInsight.intention;
|
|
|
|
import com.intellij.codeInsight.daemon.LightIntentionActionTestCase;
|
|
|
|
/**
|
|
* @author ven
|
|
*/
|
|
public class MoveFieldAssignmentToInitializerActionTest extends LightIntentionActionTestCase {
|
|
public void test() throws Exception { doAllTests(); }
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/moveFieldAssignmentToInitializer";
|
|
}
|
|
}
|