(self)
| 4157 | assert result == sat |
| 4158 | |
| 4159 | def test_parse_string_raises(self): |
| 4160 | fp = Fixedpoint() |
| 4161 | with pytest.raises(NotImplementedError): |
| 4162 | fp.parse_string("(rule true)") |
| 4163 | |
| 4164 | def test_repr(self): |
| 4165 | fp = Fixedpoint() |
nothing calls this directly
no test coverage detected