(self)
| 3194 | current_task = None |
| 3195 | |
| 3196 | def setUp(self): |
| 3197 | super().setUp() |
| 3198 | self.loop = asyncio.new_event_loop() |
| 3199 | self.set_event_loop(self.loop) |
| 3200 | |
| 3201 | def new_task(self, coro): |
| 3202 | raise NotImplementedError |
nothing calls this directly
no test coverage detected