(cls)
| 397 | |
| 398 | @classmethod |
| 399 | def _suite_names(cls): |
| 400 | suites = [] |
| 401 | for file_ in os.listdir(os.path.dirname(__file__)): |
| 402 | match = re.match(r"^([a-z].*).py$", file_) |
| 403 | if match: |
| 404 | suites.append(match.group(1)) |
| 405 | return suites |
| 406 | |
| 407 | |
| 408 | class TestResult: |