Home | History | Annotate | Download | only in test_defs

Lines Matching refs:file_path

46   def Parse(self, file_path):
50 file_path: absolute file path to parse
52 ParseError if file_path cannot be parsed
55 doc = xml.dom.minidom.parse(file_path)
58 logger.Log("test file %s does not exist" % file_path)
61 logger.Log("Error Parsing xml file: %s " % file_path)
64 logger.Log("Error Parsing xml file: %s Reason: %s" % (file_path, e.msg))
120 def Parse(file_path):
124 file_path: string absolute file path
126 a TestDefinitions object containing data parsed from file_path
131 tests_result.Parse(file_path)