(self, binary, *args, **kwargs)
| 253 | self.assertListEqual(errors, self._LoadResults()['errors']) |
| 254 | |
| 255 | def _VerifyMock(self, binary, *args, **kwargs): |
| 256 | shell = os.path.join(os.path.dirname(TOOLS_ROOT), binary) |
| 257 | command.Command.assert_called_with( |
| 258 | cmd_prefix=[], |
| 259 | shell=shell, |
| 260 | args=list(args), |
| 261 | timeout=kwargs.get('timeout', 60), |
| 262 | handle_sigterm=True) |
| 263 | |
| 264 | def _VerifyMockMultiple(self, *args, **kwargs): |
| 265 | self.assertEqual(len(args), len(command.Command.call_args_list)) |
no test coverage detected