(self)
| 122 | super().setUp() |
| 123 | |
| 124 | def tearDown(self): |
| 125 | # just in case if we have transport close callbacks |
| 126 | if not self.loop.is_closed(): |
| 127 | test_utils.run_briefly(self.loop) |
| 128 | |
| 129 | self.doCleanups() |
| 130 | support.gc_collect() |
| 131 | super().tearDown() |
| 132 | |
| 133 | def run_loop(self, coro): |
| 134 | return self.loop.run_until_complete(coro) |
nothing calls this directly
no test coverage detected