(self)
| 3229 | current_task = None |
| 3230 | |
| 3231 | def setUp(self): |
| 3232 | super().setUp() |
| 3233 | self.loop = asyncio.new_event_loop() |
| 3234 | self.set_event_loop(self.loop) |
| 3235 | |
| 3236 | def new_task(self, coro): |
| 3237 | raise NotImplementedError |
nothing calls this directly
no test coverage detected