assertEquals("\n", docCmd.text);
}
public void testNewLineAfterOpeningParWithOtherContents() {
strategy.setIndentPrefs(new TestIndentPrefs(true, 4));
String str = "" +
"def m1( self,";
// |<-- should indent here in this case, and not on the parenthesis
final Document doc = new Document(str);
DocCmd docCmd = new DocCmd(doc.getLength(), 0, "\n");