*/
public void testThrownException() throws Exception {
SchemaUnitTest.setSchemaFile("examples/preValidationTransformation/schema.xsd");
TransformerFacade uut = new TransformerFacade(new StreamSource(this.getClass().getResourceAsStream("testStylesheet.xsl"), "testStylesheet.xsl"));
try {
uut.transform(new StreamSource("examples/preValidationTransformation/testSuite.xml"), new DOMResult());
fail("Expected an exception to be thrown");
} catch (TransformerException e) {
// TODO This test fails and I can't figure out what is going on
// assertEquals("This Transformation Always Terminates", e.getMessage());
}