Comprehensive test suite execution report.
| 38 | |
| 39 | @dataclass |
| 40 | class TestSuiteReport: |
| 41 | """Comprehensive test suite execution report.""" |
| 42 | total_tests: int |
| 43 | passed: int |
| 44 | failed: int |
| 45 | skipped: int |
| 46 | errors: int |
| 47 | total_duration: float |
| 48 | parallel_workers: int |
| 49 | results: List[TestResult] |
| 50 | performance_summary: Dict[str, float] |
| 51 | |
| 52 | class TestRunner: |
| 53 | """Advanced test runner with parallel execution and performance tracking.""" |
no outgoing calls