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