(self)
| 726 | self.assertEqual(results2, [(True, 2)] * count1 + [(True, 3)] * count2) |
| 727 | |
| 728 | def test_notify(self): |
| 729 | cond = self.condtype() |
| 730 | self._check_notify(cond) |
| 731 | # A second time, to check internal state is still ok. |
| 732 | self._check_notify(cond) |
| 733 | |
| 734 | def test_timeout(self): |
| 735 | cond = self.condtype() |
nothing calls this directly
no test coverage detected