(self, test_case_name: str)
| 187 | self.suite_name = suite_name |
| 188 | |
| 189 | def add_test_case(self, test_case_name: str) -> TestCaseResult: |
| 190 | test_case_result = TestCaseResult(test_case_name) |
| 191 | self._inner_results.append(test_case_result) |
| 192 | return test_case_result |
| 193 | |
| 194 | |
| 195 | class BuildTargetResult(BaseResult): |
no test coverage detected