(self)
| 2561 | |
| 2562 | class TestPseudoBoolean: |
| 2563 | def test_atmost(self): |
| 2564 | bs = BoolVector("b", 5) |
| 2565 | r = AtMost(bs, 2) |
| 2566 | assert isinstance(r, BoolRef) |
| 2567 | |
| 2568 | def test_atleast(self): |
| 2569 | bs = BoolVector("b", 5) |
nothing calls this directly
no test coverage detected