(self)
| 24 | class EventQueueTestBase: |
| 25 | """OS-independent mixin""" |
| 26 | def make_eventqueue(self) -> base_eventqueue.BaseEventQueue: |
| 27 | raise NotImplementedError() |
| 28 | |
| 29 | def test_get(self): |
| 30 | eq = self.make_eventqueue() |
no outgoing calls
no test coverage detected