File xsdFile2 = new File(getClass().getResource("xsd/atom-author-link.xsd").toURI());
assertion.setDefinitionPaths(new String[] {xsdFile2.getAbsolutePath(), xsdFile1.getAbsolutePath()});
String responseText = readResource("response/KML_Samples.kml");
try {
assertNotNull(assertion.validateXMLContent(new WsdlSubmitContext(null), responseText));
fail("Test should fail because xsd dependency xAL.xsd has not been supplied");
} catch (AssertionException e) {
}
}