(self)
| 3749 | # and async/await syntax |
| 3750 | |
| 3751 | def setUp(self): |
| 3752 | super().setUp() |
| 3753 | self.loop = asyncio.new_event_loop() |
| 3754 | self.set_event_loop(self.loop) |
| 3755 | |
| 3756 | def tearDown(self): |
| 3757 | self.loop.close() |
nothing calls this directly
no test coverage detected