Esempio n. 1
0
 @Ignore("test fails, exception is not raised at construction time")
 @Test
 public void testConstructorThrowsISOException() throws Throwable {
   try {
     new XSLTFilter("testXSLTFilterXsltfile", true);
     fail("Expected ISOException to be thrown");
   } catch (ISOException ex) {
     junitx.framework.StringAssert.assertStartsWith(
         "javax.xml.transform.TransformerConfigurationException:", ex.getMessage());
   }
 }