(self, statistics: Statistics)
| 140 | return self._get_setup_teardown_errors() + self._get_inner_errors() |
| 141 | |
| 142 | def add_stats(self, statistics: Statistics) -> None: |
| 143 | for inner_result in self._inner_results: |
| 144 | inner_result.add_stats(statistics) |
| 145 | |
| 146 | |
| 147 | class TestCaseResult(BaseResult, FixtureResult): |