(self)
| 59 | self.assertEqual(output, "testing") |
| 60 | |
| 61 | def test_timeout(self): |
| 62 | with self.assertRaises(multiprocessing.TimeoutError): |
| 63 | case_1_seconds_timeout() |
| 64 | |
| 65 | def test_timeout_not_force_quit(self): |
| 66 | with self.assertWarns(Warning): |
nothing calls this directly
no test coverage detected