(self)
| 197 | self.assert_no_thread_leak() |
| 198 | |
| 199 | def test_tornado(self): |
| 200 | for i in range(10): |
| 201 | # The IOLoop interfaces are aware of the selector thread and |
| 202 | # (synchronously) shut it down. |
| 203 | loop = IOLoop(make_current=False) |
| 204 | loop.run_sync(self.dummy_tornado_coroutine) |
| 205 | loop.close() |
| 206 | self.assert_no_thread_leak() |
| 207 | |
| 208 | |
| 209 | class AnyThreadEventLoopPolicyTest(unittest.TestCase): |
nothing calls this directly
no test coverage detected