00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 package org.w3c.domts.level1.core;
00021
00022 import org.w3c.dom.*;
00023
00024 import org.w3c.domts.*;
00025 import javax.xml.parsers.*;
00026 import java.util.*;
00027
00028
00029
00044 public class documentcreatecdatasection extends DOMTestCase {
00045
00046 public documentcreatecdatasection(DOMTestDocumentBuilderFactory factory) {
00047 super(factory);
00048 }
00049
00050 public void runTest() throws java.lang.Throwable {
00051 Document doc;
00052 CDATASection newCDATASectionNode;
00053 String newCDATASectionValue;
00054 String newCDATASectionName;
00055 int newCDATASectionType;
00056 doc = load("staff");
00057 newCDATASectionNode = doc.createCDATASection("This is a new CDATASection node");
00058 newCDATASectionValue = newCDATASectionNode.getNodeValue();
00059 assertEquals("nodeValue","This is a new CDATASection node",newCDATASectionValue);
00060 newCDATASectionName = newCDATASectionNode.getNodeName();
00061 assertEquals("nodeName","#cdata-section",newCDATASectionName);
00062 newCDATASectionType = (int)newCDATASectionNode.getNodeType();
00063 assertEquals("nodeType",4,newCDATASectionType);
00064
00065 }
00066 public String getTargetURI() {
00067 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/documentcreatecdatasection";
00068 }
00069 public static void main(String[] args) {
00070 DOMTestCase.doMain(documentcreatecdatasection.class,args);
00071 }
00072 }