(self)
| 359 | pass |
| 360 | |
| 361 | def start(self): |
| 362 | self._invoke() |
| 363 | hello = self._read_command() |
| 364 | if hello['type'] != 'hello': |
| 365 | raise MockServerException("There was a problem, CAVES didn't greet us.") |
| 366 | |
| 367 | def shutdown(self): |
| 368 | self._attempt_shutdown() |
nothing calls this directly
no test coverage detected