Public Methods | |
| attrdefaultvalue (DOMTestDocumentBuilderFactory factory) | |
| void | runTest () throws java.lang.Throwable |
| String | getTargetURI () |
Static Public Methods | |
| void | main (String[] args) |
Definition at line 49 of file attrdefaultvalue.java.
|
|
Definition at line 51 of file attrdefaultvalue.java.
00052 {
00053 super(factory);
00054
00055 }
|
|
|
Reimplemented from DOMTest. Definition at line 73 of file attrdefaultvalue.java.
00073 {
00074 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/attrdefaultvalue";
00075 }
|
|
|
Definition at line 76 of file attrdefaultvalue.java. References DOMTestCase::doMain().
00076 {
00077 DOMTestCase.doMain(attrdefaultvalue.class,args);
00078 }
|
|
|
Reimplemented from DOMTestCase. Definition at line 57 of file attrdefaultvalue.java. References DOMTestCase::assertEquals(), and DOMTest::load().
00057 {
00058 Document doc;
00059 NodeList addressList;
00060 Node testNode;
00061 NamedNodeMap attributes;
00062 Attr streetAttr;
00063 String value;
00064 doc = load("staff");
00065 addressList = doc.getElementsByTagName("address");
00066 testNode = addressList.item(0);
00067 attributes = testNode.getAttributes();
00068 streetAttr = (Attr)attributes.getNamedItem("street");
00069 value = streetAttr.getNodeValue();
00070 assertEquals("attrDefaultValueAssert","Yes",value);
00071
00072 }
|
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001