Test wait(timeout)
(self)
| 2235 | results.append(True) |
| 2236 | |
| 2237 | def test_timeout(self): |
| 2238 | """ |
| 2239 | Test wait(timeout) |
| 2240 | """ |
| 2241 | results = self.DummyList() |
| 2242 | self.run_threads(self._test_timeout_f, (self.barrier, results)) |
| 2243 | self.assertEqual(len(results), self.barrier.parties) |
| 2244 | |
| 2245 | @classmethod |
| 2246 | def _test_default_timeout_f(cls, barrier, results): |
nothing calls this directly
no test coverage detected