(self)
| 32 | """Stress test for lint cache systems.""" |
| 33 | |
| 34 | def __init__(self): |
| 35 | self.passed = 0 |
| 36 | self.failed = 0 |
| 37 | self.errors: list[str] = [] |
| 38 | self.manifest = DependencyManifest() |
| 39 | |
| 40 | def pass_test(self, name: str): |
| 41 | self.passed += 1 |
nothing calls this directly
no test coverage detected