< prev index next >

test/javax/xml/jaxp/unittest/transform/XSLTFunctionsTest.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 33,50 **** --- 33,52 ---- import javax.xml.transform.URIResolver; import javax.xml.transform.stream.StreamResult; import javax.xml.transform.stream.StreamSource; import org.testng.annotations.DataProvider; + import org.testng.annotations.Listeners; import org.testng.annotations.Test; import static org.testng.Assert.assertEquals; /* * @summary This class contains tests for XSLT functions. */ + //@Listeners({jaxp.library.BasePolicy.class}) //uncomment this line after 8161454 is resolved public class XSLTFunctionsTest { /** * @bug 8062518 * Verifies that a reference to the DTM created by XSLT document function is
*** 63,72 **** --- 65,75 ---- Source src = new StreamSource(new StringReader(xml)); Source xslsrc = new StreamSource(new StringReader(xsl)); // Create factory and transformer TransformerFactory tf = TransformerFactory.newInstance(); + tf.setFeature("http://www.oracle.com/xml/jaxp/properties/enableExtensionFunctions", true); Transformer t = tf.newTransformer( xslsrc ); t.setErrorListener(tf.getErrorListener()); // Set URI Resolver to return the newly constructed xml // stream source object from xml test string
< prev index next >