(self, output: str)
| 807 | self.check_line(output, f'Result: {state}', full=True) |
| 808 | |
| 809 | def parse_random_seed(self, output: str) -> str: |
| 810 | match = self.regex_search(r'Using random seed: (.*)', output) |
| 811 | return match.group(1) |
| 812 | |
| 813 | def run_command(self, args, input=None, exitcode=0, **kw): |
| 814 | if not input: |
no test coverage detected