Public Methods | |
| nodetextnodeattribute (DOMTestDocumentBuilderFactory factory) | |
| void | runTest () throws java.lang.Throwable |
| String | getTargetURI () |
Static Public Methods | |
| void | main (String[] args) |
Retrieve the Text node from the last child of the first employee and invoke the "getAttributes()" method on the Text Node. It should return null.
Definition at line 45 of file nodetextnodeattribute.java.
|
|
Definition at line 47 of file nodetextnodeattribute.java.
00048 {
00049 super(factory);
00050
00051 }
|
|
|
Reimplemented from DOMTest. Definition at line 67 of file nodetextnodeattribute.java.
00067 {
00068 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/nodetextnodeattribute";
00069 }
|
|
|
Definition at line 70 of file nodetextnodeattribute.java. References DOMTestCase::doMain().
00070 {
00071 DOMTestCase.doMain(nodetextnodeattribute.class,args);
00072 }
|
|
|
Reimplemented from DOMTestCase. Definition at line 53 of file nodetextnodeattribute.java. References DOMTestCase::assertNull(), and DOMTest::load().
00053 {
00054 Document doc;
00055 NodeList elementList;
00056 Node testAddr;
00057 Node textNode;
00058 NamedNodeMap attrList;
00059 doc = load("staff");
00060 elementList = doc.getElementsByTagName("address");
00061 testAddr = elementList.item(0);
00062 textNode = testAddr.getFirstChild();
00063 attrList = textNode.getAttributes();
00064 assertNull("nodeTextNodeAttributesAssert1",attrList);
00065
00066 }
|
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001