Public Methods | |
| elementgetelementempty (DOMTestDocumentBuilderFactory factory) | |
| void | runTest () throws java.lang.Throwable |
| String | getTargetURI () |
Static Public Methods | |
| void | main (String[] args) |
Retrieve the last child of the last employee, then invoke "getAttribute(name)" method, where "name" is an attribute without a specified or DTD default value. The "getAttribute(name)" method should return the empty string. This method makes use of the "createAttribute(newAttr)" method from the Document interface.
Definition at line 49 of file elementgetelementempty.java.
|
|
Definition at line 51 of file elementgetelementempty.java.
00052 {
00053 super(factory);
00054
00055 }
|
|
|
Reimplemented from DOMTest. Definition at line 73 of file elementgetelementempty.java.
00073 {
00074 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/elementgetelementempty";
00075 }
|
|
|
Definition at line 76 of file elementgetelementempty.java. References DOMTestCase::doMain().
00076 {
00077 DOMTestCase.doMain(elementgetelementempty.class,args);
00078 }
|
|
|
Reimplemented from DOMTestCase. Definition at line 57 of file elementgetelementempty.java. References DOMTestCase::assertEquals(), and DOMTest::load().
00057 {
00058 Document doc;
00059 Attr newAttribute;
00060 NodeList elementList;
00061 Element testEmployee;
00062 Attr domesticAttr;
00063 String attrValue;
00064 doc = load("staff");
00065 newAttribute = doc.createAttribute("district");
00066 elementList = doc.getElementsByTagName("address");
00067 testEmployee = (Element)elementList.item(3);
00068 domesticAttr = testEmployee.setAttributeNode(newAttribute);
00069 attrValue = testEmployee.getAttribute("district");
00070 assertEquals("elementGetElementEmptyAssert","",attrValue);
00071
00072 }
|
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001