def read(self, path, text): document = base.parse_xml(path, text) test_suites = base.TestSuites() for element in document.getElementsByTagName('TestSuite'): try: test_suites.append(self.read_test_suite(path, element)) except base.FormatHandlerError, error: test_suites.extend(error.format())
def read(self, path, text): document = base.parse_xml(path, text) test_suites = base.TestSuites() for element in document.getElementsByTagName('testsuite'): test_suites.append(self.read_test_suite(path, element)) return test_suites