(self, test: t.Any)
| 229 | self.value = value |
| 230 | |
| 231 | def __call__(self, test: t.Any) -> bool: |
| 232 | return bool(test == self.value) |
| 233 | |
| 234 | def __repr__(self) -> str: |
| 235 | return "<SimpleTest(%r)" % self.value |
nothing calls this directly
no outgoing calls
no test coverage detected