Public Methods | |
| nodedocumentnodevalue (DOMTestDocumentBuilderFactory factory) | |
| void | runTest () throws java.lang.Throwable |
| String | getTargetURI () |
Static Public Methods | |
| void | main (String[] args) |
Retrieve the DOM Document and check the string returned by the "getNodeValue()" method. It should be equal to null.
Definition at line 46 of file nodedocumentnodevalue.java.
|
|
Definition at line 48 of file nodedocumentnodevalue.java.
00049 {
00050 super(factory);
00051
00052 }
|
|
|
Reimplemented from DOMTest. Definition at line 62 of file nodedocumentnodevalue.java.
00062 {
00063 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/nodedocumentnodevalue";
00064 }
|
|
|
Definition at line 65 of file nodedocumentnodevalue.java. References DOMTestCase::doMain().
00065 {
00066 DOMTestCase.doMain(nodedocumentnodevalue.class,args);
00067 }
|
|
|
Reimplemented from DOMTestCase. Definition at line 54 of file nodedocumentnodevalue.java. References DOMTestCase::assertNull(), and DOMTest::load().
00054 {
00055 Document doc;
00056 String documentValue;
00057 doc = load("staff");
00058 documentValue = doc.getNodeValue();
00059 assertNull("nodeDocumentNodeValueAssert1",documentValue);
00060
00061 }
|
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001