Override start to mark as started - no background threads needed for test.
(self)
| 67 | self._started = False |
| 68 | |
| 69 | def start(self): |
| 70 | """Override start to mark as started - no background threads needed for test.""" |
| 71 | if not self._started: |
| 72 | self._started = True |
| 73 | # For testing, we don't need background threads |
| 74 | # The engine's await_responses will handle the mock responses |
| 75 | |
| 76 | def shutdown(self): |
| 77 | self._started = False |
no outgoing calls
no test coverage detected