OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / libcore / dom / src / test / java / org / w3c / domts / level2 / core / documentcreateelementNS01.java
1
2 /*
3 This Java source file was generated by test-to-java.xsl
4 and is a derived work from the source document.
5 The source document contained the following notice:
6
7
8
9
10
11 Copyright (c) 2001 World Wide Web Consortium, 
12
13 (Massachusetts Institute of Technology, Institut National de
14
15 Recherche en Informatique et en Automatique, Keio University).  All 
16
17 Rights Reserved.  This program is distributed under the W3C's Software
18
19 Intellectual Property License.  This program is distributed in the 
20
21 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
22
23 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
24
25 PURPOSE.  
26
27
28
29 See W3C License http://www.w3.org/Consortium/Legal/ for more details.
30
31
32
33
34 */
35
36 package org.w3c.domts.level2.core;
37
38 import org.w3c.dom.*;
39
40
41 import org.w3c.domts.DOMTestCase;
42 import org.w3c.domts.DOMTestDocumentBuilderFactory;
43
44
45
46 /**
47  *  The method createElementNS creates an element of the given valid qualifiedName and NamespaceURI. 
48  *  
49  *  Invoke the createElementNS method on this Document object with a valid namespaceURI
50  *  and qualifiedName.  Check if a valid Element object is returned with the same node attributes.
51 * @author IBM
52 * @author Neil Delima
53 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core">http://www.w3.org/TR/DOM-Level-2-Core/core</a>
54 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-DocCrElNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-DocCrElNS</a>
55 */
56 public final class documentcreateelementNS01 extends DOMTestCase {
57
58    /**
59     * Constructor.
60     * @param factory document factory, may not be null
61     * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
62     */
63    public documentcreateelementNS01(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
64       super(factory);
65
66     //
67     //   check if loaded documents are supported for content type
68     //
69     String contentType = getContentType();
70     preload(contentType, "staffNS", false);
71     }
72
73    /**
74     * Runs the test case.
75     * @throws Throwable Any uncaught exception causes test to fail
76     */
77    public void runTest() throws Throwable {
78       Document doc;
79       Element element;
80       String namespaceURI = "http://www.w3.org/DOM/Test/level2";
81       String qualifiedName = "XML:XML";
82       String nodeName;
83       String nsURI;
84       String localName;
85       String prefix;
86       String tagName;
87       doc = (Document) load("staffNS", false);
88       element = doc.createElementNS(namespaceURI, qualifiedName);
89       nodeName = element.getNodeName();
90       nsURI = element.getNamespaceURI();
91       localName = element.getLocalName();
92       prefix = element.getPrefix();
93       tagName = element.getTagName();
94       assertEquals("documentcreateelementNS01_nodeName", "XML:XML", nodeName);
95       assertEquals("documentcreateelementNS01_namespaceURI", "http://www.w3.org/DOM/Test/level2", nsURI);
96       assertEquals("documentcreateelementNS01_localName", "XML", localName);
97       assertEquals("documentcreateelementNS01_prefix", "XML", prefix);
98       assertEquals("documentcreateelementNS01_tagName", "XML:XML", tagName);
99       }
100    /**
101     *  Gets URI that identifies the test.
102     *  @return uri identifier of test
103     */
104    public String getTargetURI() {
105       return "http://www.w3.org/2001/DOM-Test-Suite/level2/core/documentcreateelementNS01";
106    }
107    /**
108     * Runs this test from the command line.
109     * @param args command line arguments
110     */
111    public static void main(final String[] args) {
112         DOMTestCase.doMain(documentcreateelementNS01.class, args);
113    }
114 }
115