(self, output, reduction=None)
| 21 | |
| 22 | class BaseOutProc(object): |
| 23 | def process(self, output, reduction=None): |
| 24 | has_unexpected_output = self.has_unexpected_output(output) |
| 25 | if has_unexpected_output: |
| 26 | self.regenerate_expected_files(output) |
| 27 | return self._create_result(has_unexpected_output, output, reduction) |
| 28 | |
| 29 | def regenerate_expected_files(self, output): |
| 30 | return |
no test coverage detected