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