(self, output)
| 604 | self.assertRegex(output, regex) |
| 605 | |
| 606 | def parse_executed_tests(self, output): |
| 607 | regex = (fr'^{LOG_PREFIX}\[ *[0-9]+(?:/ *[0-9]+)*\] ' |
| 608 | fr'({self.TESTNAME_REGEX}) {RESULT_REGEX}') |
| 609 | parser = re.finditer(regex, output, re.MULTILINE) |
| 610 | return list(match.group(1) for match in parser) |
| 611 | |
| 612 | def check_executed_tests(self, output, tests, *, stats, |
| 613 | skipped=(), failed=(), |
no test coverage detected