hc_entitiesremovenameditem1public final class hc_entitiesremovenameditem1 extends org.w3c.domts.DOMTestCase An attempt to add remove an entity should result in a NO_MODIFICATION_ERR. |
Constructors Summary |
---|
public hc_entitiesremovenameditem1(org.w3c.domts.DOMTestDocumentBuilderFactory factory)Constructor.
super(factory);
if (factory.hasFeature("XML", null) != true) {
throw org.w3c.domts.DOMTestIncompatibleException.incompatibleFeature("XML", null);
}
//
// check if loaded documents are supported for content type
//
String contentType = getContentType();
preload(contentType, "hc_staff", true);
|
Methods Summary |
---|
public java.lang.String | getTargetURI()Gets URI that identifies the test.
return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_entitiesremovenameditem1";
| public static void | main(java.lang.String[] args)Runs this test from the command line.
DOMTestCase.doMain(hc_entitiesremovenameditem1.class, args);
| public void | runTest()Runs the test case.
Document doc;
NamedNodeMap entities;
DocumentType docType;
Node retval;
doc = (Document) load("hc_staff", true);
docType = doc.getDoctype();
if (
!(("text/html".equals(getContentType())))
) {
assertNotNull("docTypeNotNull", docType);
entities = docType.getEntities();
assertNotNull("entitiesNotNull", entities);
{
boolean success = false;
try {
retval = entities.removeNamedItem("alpha");
} catch (DOMException ex) {
success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
}
assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR", success);
}
}
|
|