(self)
| 446 | # automatically set as current. |
| 447 | class TestIOLoopCurrent(unittest.TestCase): |
| 448 | def setUp(self): |
| 449 | setup_with_context_manager(self, ignore_deprecation()) |
| 450 | self.io_loop = None # type: typing.Optional[IOLoop] |
| 451 | IOLoop.clear_current() |
| 452 | |
| 453 | def tearDown(self): |
| 454 | if self.io_loop is not None: |
no test coverage detected