assertEquals(" ", docCmd.text);
assertEquals(str, document.get()); //as we already have a selection, nothing should be deleted
}
public void testTab3() {
strategy.setIndentPrefs(new TestIndentPrefs(false, 4));
String str = "\tprint 'foo'";
DocCmd docCmd = new DocCmd(1, 0, "\t");
Document document = new Document(str);
strategy.customizeDocumentCommand(document, docCmd);
assertEquals("\t", docCmd.text);