(self)
| 174 | ) |
| 175 | |
| 176 | def test_poly_reverse_overlapping_chain(self) -> None: |
| 177 | # A :> T <: S :> B |
| 178 | self.assert_solve( |
| 179 | [self.fx.t, self.fx.s], |
| 180 | [ |
| 181 | self.subc(self.fx.t, self.fx.s), |
| 182 | self.subc(self.fx.t, self.fx.a), |
| 183 | self.supc(self.fx.s, self.fx.b), |
| 184 | ], |
| 185 | [self.fx.a, self.fx.a], |
| 186 | allow_polymorphic=True, |
| 187 | ) |
| 188 | |
| 189 | def test_poly_reverse_split_chain(self) -> None: |
| 190 | # B :> T <: S :> A |
nothing calls this directly
no test coverage detected