(self, sut_node: NodeConfiguration)
| 285 | self._stats_filename = os.path.join(SETTINGS.output_dir, "statistics.txt") |
| 286 | |
| 287 | def add_execution(self, sut_node: NodeConfiguration) -> ExecutionResult: |
| 288 | execution_result = ExecutionResult(sut_node) |
| 289 | self._inner_results.append(execution_result) |
| 290 | return execution_result |
| 291 | |
| 292 | def add_error(self, error) -> None: |
| 293 | self._errors.append(error) |
no test coverage detected