(self)
| 691 | |
| 692 | class JoinSuite(Suite): |
| 693 | def setUp(self) -> None: |
| 694 | self.fx = TypeFixture(INVARIANT) |
| 695 | self.fx_co = TypeFixture(COVARIANT) |
| 696 | self.fx_contra = TypeFixture(CONTRAVARIANT) |
| 697 | |
| 698 | def test_trivial_cases(self) -> None: |
| 699 | for simple in self.fx.a, self.fx.o, self.fx.b: |
nothing calls this directly
no test coverage detected