Home | History | Annotate | Download | only in core
      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 Copyright (c) 2003 World Wide Web Consortium,
     10 (Massachusetts Institute of Technology, Institut National de
     11 Recherche en Informatique et en Automatique, Keio University).  All
     12 Rights Reserved.  This program is distributed under the W3C's Software
     13 Intellectual Property License.  This program is distributed in the
     14 hope that it will be useful, but WITHOUT ANY WARRANTY; without even
     15 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     16 PURPOSE.
     17 
     18 See W3C License http://www.w3.org/Consortium/Legal/ for more details.
     19 
     20 
     21 */
     22 
     23 package org.w3c.domts.level2.core;
     24 
     25 import org.w3c.dom.*;
     26 
     27 
     28 import org.w3c.domts.DOMTestCase;
     29 import org.w3c.domts.DOMTestDocumentBuilderFactory;
     30 
     31 
     32 
     33 /**
     34  * Notation nodes are not namespaced and should not be retrievable using
     35  * getNamedItemNS.
     36 * @author Curt Arnold
     37 * @author Curt Arnold
     38 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getNamedItemNS</a>
     39 * @see <a href="http://www.w3.org/Bugs/Public/show_bug.cgi?id=259">http://www.w3.org/Bugs/Public/show_bug.cgi?id=259</a>
     40 */
     41 public final class getNamedItemNS04 extends DOMTestCase {
     42 
     43    /**
     44     * Constructor.
     45     * @param factory document factory, may not be null
     46     * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
     47     */
     48    public getNamedItemNS04(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
     49       super(factory);
     50 
     51     //
     52     //   check if loaded documents are supported for content type
     53     //
     54     String contentType = getContentType();
     55     preload(contentType, "staffNS", false);
     56     }
     57 
     58    /**
     59     * Runs the test case.
     60     * @throws Throwable Any uncaught exception causes test to fail
     61     */
     62    public void runTest() throws Throwable {
     63       Document doc;
     64       DocumentType docType;
     65       NamedNodeMap notations;
     66       Notation notation;
     67       String nullNS = null;
     68 
     69       doc = (Document) load("staffNS", false);
     70       docType = doc.getDoctype();
     71       notations = docType.getNotations();
     72       assertNotNull("notationsNotNull", notations);
     73       notation = (Notation) notations.getNamedItemNS(nullNS, "notation1");
     74       assertNull("notationNull", notation);
     75       }
     76    /**
     77     *  Gets URI that identifies the test.
     78     *  @return uri identifier of test
     79     */
     80    public String getTargetURI() {
     81       return "http://www.w3.org/2001/DOM-Test-Suite/level2/core/getNamedItemNS04";
     82    }
     83    /**
     84     * Runs this test from the command line.
     85     * @param args command line arguments
     86     */
     87    public static void main(final String[] args) {
     88         DOMTestCase.doMain(getNamedItemNS04.class, args);
     89    }
     90 }
     91 
     92