(self)
| 27 | raise NotImplementedError() |
| 28 | |
| 29 | def test_get(self): |
| 30 | eq = self.make_eventqueue() |
| 31 | event = Event("key", "a", b"a") |
| 32 | eq.insert(event) |
| 33 | self.assertEqual(eq.get(), event) |
| 34 | |
| 35 | def test_empty(self): |
| 36 | eq = self.make_eventqueue() |
nothing calls this directly
no test coverage detected