Represents missing test coverage.
| 40 | |
| 41 | @dataclass |
| 42 | class CoverageGap: |
| 43 | """Represents missing test coverage.""" |
| 44 | file_path: str |
| 45 | function_name: str |
| 46 | line_numbers: List[int] |
| 47 | complexity_score: float |
| 48 | priority: str # HIGH, MEDIUM, LOW |
| 49 | |
| 50 | @dataclass |
| 51 | class PerformanceIssue: |
no outgoing calls