nodetextnodevaluepublic final class nodetextnodevalue extends org.w3c.domts.DOMTestCase The string returned by the "getNodeValue()" method for a
Text Node is the content of the Text node.
Retrieve the Text node from the last child of the first
employee and check the string returned by the
"getNodeValue()" method. It should be equal to
"1230 North Ave. Dallas, Texas 98551". |
Constructors Summary |
---|
public nodetextnodevalue(org.w3c.domts.DOMTestDocumentBuilderFactory factory)Constructor.
super(factory);
//
// check if loaded documents are supported for content type
//
String contentType = getContentType();
preload(contentType, "staff", false);
|
Methods Summary |
---|
public java.lang.String | getTargetURI()Gets URI that identifies the test.
return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/nodetextnodevalue";
| public static void | main(java.lang.String[] args)Runs this test from the command line.
DOMTestCase.doMain(nodetextnodevalue.class, args);
| public void | runTest()Runs the test case.
Document doc;
NodeList elementList;
Element testAddr;
Node textNode;
String textValue;
doc = (Document) load("staff", false);
elementList = doc.getElementsByTagName("address");
testAddr = (Element) elementList.item(0);
textNode = testAddr.getFirstChild();
textValue = textNode.getNodeValue();
assertEquals("nodeTextNodeValueAssert1", "1230 North Ave. Dallas, Texas 98551", textValue);
|
|