(self)
| 63 | case_1_seconds_timeout() |
| 64 | |
| 65 | def test_timeout_not_force_quit(self): |
| 66 | with self.assertWarns(Warning): |
| 67 | with self.assertRaises(multiprocessing.TimeoutError): |
| 68 | case_1_seconds_timeout_warning() |
| 69 | |
| 70 | def test_timeout_bad(self): |
| 71 | # timeout before the method's error |
nothing calls this directly
no test coverage detected