TreeItem root = treeViewer.getTree().getItem(0);
IDOMElement node = (IDOMElement) root.getItem(0).getData();
assertEquals(20, root.getItemCount());
DeleteNodeAction action = new DeleteNodeAction(textView, node);
action.run();
assertEquals(19, root.getItemCount());
}
public void testLargeFileInsertion() throws Exception {
cEditor = openFileInEditor("src/many-beans.xml");