Public Methods | |
| nodegetownerdocumentnull (DOMTestDocumentBuilderFactory factory) | |
| void | runTest () throws java.lang.Throwable |
| String | getTargetURI () |
Static Public Methods | |
| void | main (String[] args) |
node itself is a document.
Invoke the "getOwnerDocument()" method on the master
document. The Document returned should be null.
Definition at line 49 of file nodegetownerdocumentnull.java.
|
|
Definition at line 51 of file nodegetownerdocumentnull.java.
00052 {
00053 super(factory);
00054
00055 }
|
|
|
Reimplemented from DOMTest. Definition at line 65 of file nodegetownerdocumentnull.java.
00065 {
00066 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/nodegetownerdocumentnull";
00067 }
|
|
|
Definition at line 68 of file nodegetownerdocumentnull.java. References DOMTestCase::doMain().
00068 {
00069 DOMTestCase.doMain(nodegetownerdocumentnull.class,args);
00070 }
|
|
|
Reimplemented from DOMTestCase. Definition at line 57 of file nodegetownerdocumentnull.java. References DOMTestCase::assertNull(), and DOMTest::load().
00057 {
00058 Document doc;
00059 Document ownerDocument;
00060 doc = load("staff");
00061 ownerDocument = doc.getOwnerDocument();
00062 assertNull("nodeGetOwnerDocumentNullAssert1",ownerDocument);
00063
00064 }
|
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001