(self, *args, **kwargs)
| 82 | return stdout, stderr, error |
| 83 | |
| 84 | def RunWithArgsForStdout(self, *args, **kwargs): |
| 85 | stdout, stderr, error = self._RunWithArgsInternal(*args, **kwargs) |
| 86 | if error: |
| 87 | raise error |
| 88 | return stdout |
| 89 | |
| 90 | def RunWithArgs(self, *args, **kwargs): |
| 91 | stdout, stderr, error = self._RunWithArgsInternal(*args, **kwargs) |
no test coverage detected