documentcreateelementpublic final class documentcreateelement extends org.w3c.domts.DOMTestCase The "createElement(tagName)" method creates an Element
of the type specified.
Retrieve the entire DOM document and invoke its
"createElement(tagName)" method with tagName="address".
The method should create an instance of an Element node
whose tagName is "address". The NodeName, NodeType
and NodeValue are returned. |
Constructors Summary |
---|
public documentcreateelement(org.w3c.domts.DOMTestDocumentBuilderFactory factory)Constructor.
super(factory);
//
// check if loaded documents are supported for content type
//
String contentType = getContentType();
preload(contentType, "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/documentcreateelement";
| public static void | main(java.lang.String[] args)Runs this test from the command line.
DOMTestCase.doMain(documentcreateelement.class, args);
| public void | runTest()Runs the test case.
Document doc;
Element newElement;
String newElementName;
int newElementType;
String newElementValue;
doc = (Document) load("staff", true);
newElement = doc.createElement("address");
newElementName = newElement.getNodeName();
assertEquals("name", "address", newElementName);
newElementType = (int) newElement.getNodeType();
assertEquals("type", 1, newElementType);
newElementValue = newElement.getNodeValue();
assertNull("valueInitiallyNull", newElementValue);
|
|