public void testIndent4() { //even if it does not end with ',' we should indent in parenthesis
strategy.setIndentPrefs(new TestIndentPrefs(true, 4));
String doc = "" +
"properties.create(a = newClass(),\n" +
" b = newClass("; //don't indent after the '(' in this line, but to the default one
DocCmd docCmd = new DocCmd(doc.length(), 0, "\n");
strategy.customizeDocumentCommand(new Document(doc), docCmd);
String expected = "\n" +
" ";
assertEquals(expected, docCmd.text);
}