use of com.intellij.psi.codeStyle.CommonCodeStyleSettings in project intellij-community by JetBrains.
the class JavaFormatterTest method testLabel.
public void testLabel() throws Exception {
final CommonCodeStyleSettings settings = getSettings();
settings.getRootSettings().getIndentOptions(StdFileTypes.JAVA).LABEL_INDENT_ABSOLUTE = true;
settings.SPECIAL_ELSE_IF_TREATMENT = true;
settings.FOR_BRACE_FORCE = CommonCodeStyleSettings.FORCE_BRACES_ALWAYS;
myTextRange = new TextRange(59, 121);
doTextTest("public class Foo {\n" + " public void foo() {\n" + "label2:\n" + " for (int i = 0; i < 5; i++)\n" + " {doSomething(i);\n" + " }\n" + " }\n" + "}", "public class Foo {\n" + " public void foo() {\n" + "label2:\n" + " for (int i = 0; i < 5; i++) {\n" + " doSomething(i);\n" + " }\n" + " }\n" + "}");
}
use of com.intellij.psi.codeStyle.CommonCodeStyleSettings in project intellij-community by JetBrains.
the class JavaFormatterTest method testTernaryExpression.
public void testTernaryExpression() throws Exception {
final CommonCodeStyleSettings settings = getSettings();
settings.ALIGN_MULTILINE_TERNARY_OPERATION = true;
doTest();
settings.ALIGN_MULTILINE_TERNARY_OPERATION = false;
doTest("TernaryExpression.java", "TernaryExpression_DoNotAlign_after.java");
}
use of com.intellij.psi.codeStyle.CommonCodeStyleSettings in project intellij-community by JetBrains.
the class JavaFormatterTest method testSCR879.
public void testSCR879() throws Exception {
final CommonCodeStyleSettings settings = getSettings();
settings.BRACE_STYLE = CommonCodeStyleSettings.NEXT_LINE;
doTest();
}
use of com.intellij.psi.codeStyle.CommonCodeStyleSettings in project intellij-community by JetBrains.
the class WrapperTest method testExtendsListWrappingNormal.
public void testExtendsListWrappingNormal() throws Exception {
CommonCodeStyleSettings settings = getSettings(JavaLanguage.INSTANCE);
defaultCodeStyle();
settings.EXTENDS_KEYWORD_WRAP = CommonCodeStyleSettings.DO_NOT_WRAP;
settings.EXTENDS_LIST_WRAP = CommonCodeStyleSettings.WRAP_AS_NEEDED;
settings.RIGHT_MARGIN = 45;
doTest("ExtendsListWrapping", "ExtendsListWrapping_normal");
}
use of com.intellij.psi.codeStyle.CommonCodeStyleSettings in project intellij-community by JetBrains.
the class WrapperTest method testForStatementLParenMoved.
public void testForStatementLParenMoved() throws Exception {
CommonCodeStyleSettings settings = getSettings(JavaLanguage.INSTANCE);
defaultCodeStyle();
settings.FOR_STATEMENT_WRAP = CommonCodeStyleSettings.WRAP_AS_NEEDED | CommonCodeStyleSettings.WRAP_ON_EVERY_ITEM;
settings.FOR_STATEMENT_LPAREN_ON_NEXT_LINE = true;
settings.RIGHT_MARGIN = 80;
doTest("ForStatement", "ForStatement_lparen");
}
Aggregations