@Test
public void testAtomValidation() throws Exception {
InputStream in =
new FileInputStream(getDemoFile("atom/local-server-demos/simple-image-demo/obj_demo_5.xml"));
DOValidatorXMLSchema dov = new DOValidatorXMLSchema(RESOURCES + "xsd/atom.xsd");
dov.validate(in);
}
public static junit.framework.Test suite() {
return new JUnit4TestAdapter(DOValidatorXMLSchemaTest.class);