mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
20 lines
484 B
Java
20 lines
484 B
Java
package com.intellij.codeInsight.daemon.quickFix;
|
|
|
|
import com.intellij.psi.codeStyle.CodeStyleSettingsManager;
|
|
|
|
/**
|
|
* @author ven
|
|
*/
|
|
public class CreateClassFromNewTest extends LightQuickFixTestCase {
|
|
|
|
public void test() throws Exception {
|
|
CodeStyleSettingsManager.getSettings(getProject()).SPACE_BEFORE_CLASS_LBRACE = true;
|
|
doAllTests();
|
|
}
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/createClassFromNew";
|
|
}
|
|
}
|