(self, kernel)
| 2608 | |
| 2609 | class TestSolverExtras: |
| 2610 | def test_solver_append(self, kernel): |
| 2611 | s = Solver() |
| 2612 | x = Int("x") |
| 2613 | s.append(x > 0) |
| 2614 | assert len(s.assertions()) == 1 |
| 2615 | |
| 2616 | def test_solver_insert(self, kernel): |
| 2617 | s = Solver() |
nothing calls this directly
no test coverage detected