(self)
| 2888 | th.join() |
| 2889 | |
| 2890 | def test_new_event_loop(self): |
| 2891 | policy = test_utils.DefaultEventLoopPolicy() |
| 2892 | |
| 2893 | loop = policy.new_event_loop() |
| 2894 | self.assertIsInstance(loop, asyncio.AbstractEventLoop) |
| 2895 | loop.close() |
| 2896 | |
| 2897 | def test_set_event_loop(self): |
| 2898 | policy = test_utils.DefaultEventLoopPolicy() |
nothing calls this directly
no test coverage detected