(self)
| 4526 | assert s.cube() == [] |
| 4527 | |
| 4528 | def test_consequences(self): |
| 4529 | s = Solver() |
| 4530 | result, _ = s.consequences([], []) |
| 4531 | assert result == unknown |
| 4532 | |
| 4533 | def test_help(self): |
| 4534 | s = Solver() |
nothing calls this directly
no test coverage detected