(self)
| 40 | ) |
| 41 | |
| 42 | def test_unsatisfiable_constraints(self) -> None: |
| 43 | # The constraints are impossible to satisfy. |
| 44 | self.assert_solve( |
| 45 | [self.fx.t], [self.supc(self.fx.t, self.fx.a), self.subc(self.fx.t, self.fx.b)], [None] |
| 46 | ) |
| 47 | |
| 48 | def test_exactly_specified_result(self) -> None: |
| 49 | self.assert_solve( |
nothing calls this directly
no test coverage detected