(self)
| 9 | |
| 10 | class SubtypingSuite(Suite): |
| 11 | def setUp(self) -> None: |
| 12 | self.fx = TypeFixture(INVARIANT) |
| 13 | self.fx_contra = TypeFixture(CONTRAVARIANT) |
| 14 | self.fx_co = TypeFixture(COVARIANT) |
| 15 | |
| 16 | def test_trivial_cases(self) -> None: |
| 17 | for simple in self.fx_co.a, self.fx_co.o, self.fx_co.b: |
nothing calls this directly
no test coverage detected