(content: str, path: str = "src/fl/test.h")
| 22 | |
| 23 | |
| 24 | def _check(content: str, path: str = "src/fl/test.h") -> list[tuple[int, str]]: |
| 25 | checker = NoexceptSpecialMembersChecker() |
| 26 | fc = _make_fc(path, content) |
| 27 | checker.check_file_content(fc) |
| 28 | return checker.violations.get(path, []) |
| 29 | |
| 30 | |
| 31 | # ── File filtering ────────────────────────────────────────────────────────── |
no test coverage detected