(self)
| 1779 | threading_helper.join_thread(w) |
| 1780 | |
| 1781 | def test_timeout(self): |
| 1782 | cond = self.Condition() |
| 1783 | wait = TimingWrapper(cond.wait) |
| 1784 | cond.acquire() |
| 1785 | res = wait(TIMEOUT1) |
| 1786 | cond.release() |
| 1787 | self.assertEqual(res, False) |
| 1788 | self.assertTimingAlmostEqual(wait.elapsed, TIMEOUT1) |
| 1789 | |
| 1790 | @classmethod |
| 1791 | def _test_waitfor_f(cls, cond, state): |
nothing calls this directly
no test coverage detected