(self)
| 33 | ) |
| 34 | |
| 35 | def test_both_kinds_of_constraints(self) -> None: |
| 36 | self.assert_solve( |
| 37 | [self.fx.t], |
| 38 | [self.supc(self.fx.t, self.fx.b), self.subc(self.fx.t, self.fx.a)], |
| 39 | [self.fx.b], |
| 40 | ) |
| 41 | |
| 42 | def test_unsatisfiable_constraints(self) -> None: |
| 43 | # The constraints are impossible to satisfy. |
nothing calls this directly
no test coverage detected