(self)
| 623 | class AsyncGenAsyncioTest(unittest.TestCase): |
| 624 | |
| 625 | def setUp(self): |
| 626 | self.loop = asyncio.new_event_loop() |
| 627 | asyncio.set_event_loop(None) |
| 628 | |
| 629 | def tearDown(self): |
| 630 | self.loop.close() |
nothing calls this directly
no test coverage detected