(self)
| 182 | IOLoop.current() |
| 183 | |
| 184 | def test_asyncio_run(self): |
| 185 | for i in range(10): |
| 186 | # asyncio.run calls shutdown_asyncgens for us. |
| 187 | asyncio.run(self.dummy_tornado_coroutine()) |
| 188 | self.assert_no_thread_leak() |
| 189 | |
| 190 | def test_asyncio_manual(self): |
| 191 | for i in range(10): |
nothing calls this directly
no test coverage detected