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