(self)
| 160 | self.assertEqual(1, res) |
| 161 | |
| 162 | def test_nonblocking_get(self): |
| 163 | q = asyncio.Queue() |
| 164 | q.put_nowait(1) |
| 165 | self.assertEqual(1, q.get_nowait()) |
| 166 | |
| 167 | def test_nonblocking_get_exception(self): |
| 168 | q = asyncio.Queue() |
nothing calls this directly
no test coverage detected