* When getTestSuite finds a well formed file, it should not throw any exceptions,
* even if the file contains no tests.
*/
public void testGetTestSuiteWellFormedFile() throws Exception {
Test result = SchemaUnitTest.getTestSuite(SchemaUnitTest.getSAXParserInstance(), new File("build.xml"));
assertEquals(0, result.countTestCases());
result.run(new TestResult());
}
/**
* Even when no schema file can be found, a valid suite must be returned.