Runs the test case.
Document doc;
Node entRef;
Node entText;
Node removedNode;
doc = (Document) load("staff", true);
entRef = doc.createEntityReference("ent4");
assertNotNull("createdEntRefNotNull", entRef);
entText = entRef.getFirstChild();
assertNotNull("entTextNotNull", entText);
{
boolean success = false;
try {
removedNode = entRef.removeChild(entText);
} catch (DOMException ex) {
success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
}
assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR", success);
}