Lines Matching refs:testsuite
1378 testsuite = xml.etree.ElementTree.Element('testsuite')
1379 testsuite.attrib['errors'] = str(num_errors)
1380 testsuite.attrib['failures'] = str(num_failures)
1381 testsuite.attrib['name'] = 'cpplint'
1384 testsuite.attrib['tests'] = str(1)
1385 xml.etree.ElementTree.SubElement(testsuite, 'testcase', name='passed')
1388 testsuite.attrib['tests'] = str(num_errors + num_failures)
1390 testcase = xml.etree.ElementTree.SubElement(testsuite, 'testcase')
1407 testcase = xml.etree.ElementTree.SubElement(testsuite, 'testcase')
1415 return xml_decl + xml.etree.ElementTree.tostring(testsuite, 'utf-8').decode('utf-8')