1
2/*
3This Java source file was generated by test-to-java.xsl
4and is a derived work from the source document.
5The source document contained the following notice:
6
7
8Copyright (c) 2001-2004 World Wide Web Consortium,
9(Massachusetts Institute of Technology, Institut National de
10Recherche en Informatique et en Automatique, Keio University). All
11Rights Reserved. This program is distributed under the W3C's Software
12Intellectual Property License. This program is distributed in the
13hope that it will be useful, but WITHOUT ANY WARRANTY; without even
14the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15PURPOSE.
16See W3C License http://www.w3.org/Consortium/Legal/ for more details.
17
18*/
19
20package org.w3c.domts.level1.core;
21
22import org.w3c.dom.*;
23
24
25import org.w3c.domts.DOMTestCase;
26import org.w3c.domts.DOMTestDocumentBuilderFactory;
27
28
29
30/**
31 *     The "createProcessingInstruction(target,data)" method
32 *    creates a new ProcessingInstruction node with the
33 *    specified name and data string.
34 *
35 *    Retrieve the entire DOM document and invoke its
36 *    "createProcessingInstruction(target,data)" method.
37 *    It should create a new PI node with the specified target
38 *    and data.  The target, data and type are retrieved and
39 *    output.
40* @author NIST
41* @author Mary Brady
42* @author Curt Arnold
43* @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#</a>
44* @see <a href="http://lists.w3.org/Archives/Public/www-dom-ts/2001Apr/0020.html">http://lists.w3.org/Archives/Public/www-dom-ts/2001Apr/0020.html</a>
45* @see <a href="http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-135944439">http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-135944439</a>
46* @see <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=249">http://www.w3.org/Bugs/Public/show_bug.cgi?id=249</a>
47*/
48public final class documentcreateprocessinginstruction extends DOMTestCase {
49
50   /**
51    * Constructor.
52    * @param factory document factory, may not be null
53    * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
54    */
55   public documentcreateprocessinginstruction(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
56      super(factory);
57
58    //
59    //   check if loaded documents are supported for content type
60    //
61    String contentType = getContentType();
62    preload(contentType, "staff", true);
63    }
64
65   /**
66    * Runs the test case.
67    * @throws Throwable Any uncaught exception causes test to fail
68    */
69   public void runTest() throws Throwable {
70      Document doc;
71      ProcessingInstruction newPINode;
72      String piValue;
73      String piName;
74      int piType;
75      doc = (Document) load("staff", true);
76      newPINode = doc.createProcessingInstruction("TESTPI", "This is a new PI node");
77      assertNotNull("createdPINotNull", newPINode);
78      piName = newPINode.getNodeName();
79      assertEquals("name", "TESTPI", piName);
80      piValue = newPINode.getNodeValue();
81      assertEquals("value", "This is a new PI node", piValue);
82      piType = (int) newPINode.getNodeType();
83      assertEquals("type", 7, piType);
84      }
85   /**
86    *  Gets URI that identifies the test.
87    *  @return uri identifier of test
88    */
89   public String getTargetURI() {
90      return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/documentcreateprocessinginstruction";
91   }
92   /**
93    * Runs this test from the command line.
94    * @param args command line arguments
95    */
96   public static void main(final String[] args) {
97        DOMTestCase.doMain(documentcreateprocessinginstruction.class, args);
98   }
99}
100
101