use of com.helger.commons.io.resource.wrapped.GZIPReadableResource in project ph-schematron by phax.
the class Issue29Test method testGood.
@Test
@Ignore("Takes too long - more than 1 min")
public void testGood() throws Exception {
final SchematronOutputType aSOT = validateXmlUsingSchematron(new GZIPReadableResource(new ClassPathResource("issues/github29/sample.xml.gz")));
assertNotNull(aSOT);
final ICommonsList<SVRLFailedAssert> aErrors = SVRLHelper.getAllFailedAssertions(aSOT);
assertNotNull(aErrors);
s_aLogger.info("Errors found: " + aErrors);
}
Aggregations