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 
     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  *       Returns a NodeList of all the Elements with a given local name and namespace URI in the
     48  *       order in which they are encountered in a preorder traversal of the Document tree.
     49  *       Invoke getElementsByTagNameNS on the documentElement with the following values:
     50  *       namespaceURI: 'http://www.altavista.com'
     51  *       localName: '*'.
     52  *       Verify if this returns a nodeList of 1 elements.
     53  *
     54 * @author IBM
     55 * @author Neil Delima
     56 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getElBTNNS">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-getElBTNNS</a>
     57 */
     58 public final class elementgetelementsbytagnamens05 extends DOMTestCase {
     59 
     60    /**
     61     * Constructor.
     62     * @param factory document factory, may not be null
     63     * @throws org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration
     64     */
     65    public elementgetelementsbytagnamens05(final DOMTestDocumentBuilderFactory factory)  throws org.w3c.domts.DOMTestIncompatibleException {
     66 
     67       org.w3c.domts.DocumentBuilderSetting[] settings =
     68           new org.w3c.domts.DocumentBuilderSetting[] {
     69 org.w3c.domts.DocumentBuilderSetting.namespaceAware
     70         };
     71         DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings);
     72         setFactory(testFactory);
     73 
     74     //
     75     //   check if loaded documents are supported for content type
     76     //
     77     String contentType = getContentType();
     78     preload(contentType, "staffNS", false);
     79     }
     80 
     81    /**
     82     * Runs the test case.
     83     * @throws Throwable Any uncaught exception causes test to fail
     84     */
     85    public void runTest() throws Throwable {
     86       Document doc;
     87       Element element;
     88       NodeList elementList;
     89       doc = (Document) load("staffNS", false);
     90       element = doc.getDocumentElement();
     91       elementList = element.getElementsByTagNameNS("http://www.altavista.com", "*");
     92       assertSize("elementgetelementsbytagnamens05", 1, elementList);
     93       }
     94    /**
     95     *  Gets URI that identifies the test.
     96     *  @return uri identifier of test
     97     */
     98    public String getTargetURI() {
     99       return "http://www.w3.org/2001/DOM-Test-Suite/level2/core/elementgetelementsbytagnamens05";
    100    }
    101    /**
    102     * Runs this test from the command line.
    103     * @param args command line arguments
    104     */
    105    public static void main(final String[] args) {
    106         DOMTestCase.doMain(elementgetelementsbytagnamens05.class, args);
    107    }
    108 }
    109 
    110