< prev index next >

test/javax/xml/jaxp/unittest/stream/XMLStreamWriterTest/NullUriDetectionTest.java

Print this page




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package stream.XMLStreamWriterTest;
  25 
  26 import java.io.StringWriter;
  27 
  28 import javax.xml.stream.XMLOutputFactory;
  29 import javax.xml.stream.XMLStreamWriter;
  30 

  31 import org.testng.annotations.Test;
  32 
  33 /*
  34  * @bug 6391922
  35  * @summary Test XMLStreamWriter can writeDefaultNamespace(null).
  36  */

  37 public class NullUriDetectionTest {
  38     @Test
  39     public void test1() throws Exception {
  40         XMLOutputFactory xof = XMLOutputFactory.newInstance();
  41         xof.setProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES, Boolean.TRUE);
  42 
  43         StringWriter sw = new StringWriter();
  44         XMLStreamWriter w = xof.createXMLStreamWriter(sw);
  45         w.writeStartDocument();
  46         w.writeStartElement("foo", "bar", "zot");
  47         w.writeDefaultNamespace(null);
  48         w.writeCharacters("---");
  49     }
  50 }


  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 package stream.XMLStreamWriterTest;
  25 
  26 import java.io.StringWriter;
  27 
  28 import javax.xml.stream.XMLOutputFactory;
  29 import javax.xml.stream.XMLStreamWriter;
  30 
  31 import org.testng.annotations.Listeners;
  32 import org.testng.annotations.Test;
  33 
  34 /*
  35  * @bug 6391922
  36  * @summary Test XMLStreamWriter can writeDefaultNamespace(null).
  37  */
  38 @Listeners({jaxp.library.BasePolicy.class})
  39 public class NullUriDetectionTest {
  40     @Test
  41     public void test1() throws Exception {
  42         XMLOutputFactory xof = XMLOutputFactory.newInstance();
  43         xof.setProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES, Boolean.TRUE);
  44 
  45         StringWriter sw = new StringWriter();
  46         XMLStreamWriter w = xof.createXMLStreamWriter(sw);
  47         w.writeStartDocument();
  48         w.writeStartElement("foo", "bar", "zot");
  49         w.writeDefaultNamespace(null);
  50         w.writeCharacters("---");
  51     }
  52 }
< prev index next >