(self, kernel)
| 2624 | s.set(timeout=1000) # no-op, should not raise |
| 2625 | |
| 2626 | def test_solver_num_scopes(self, kernel): |
| 2627 | s = Solver() |
| 2628 | assert s.num_scopes() == 0 |
| 2629 | s.push() |
| 2630 | assert s.num_scopes() == 1 |
| 2631 | s.push() |
| 2632 | assert s.num_scopes() == 2 |
| 2633 | s.pop() |
| 2634 | assert s.num_scopes() == 1 |
| 2635 | |
| 2636 | def test_solver_len(self, kernel): |
| 2637 | s = Solver() |
nothing calls this directly
no test coverage detected