(
content: str, path: str = "src/platforms/avr/test.h"
)
| 21 | |
| 22 | |
| 23 | def _check( |
| 24 | content: str, path: str = "src/platforms/avr/test.h" |
| 25 | ) -> list[tuple[int, str]]: |
| 26 | checker = IsHeaderIncludeChecker() |
| 27 | checker.check_file_content(_make_file_content(content, path)) |
| 28 | return checker.violations.get(path, []) |
| 29 | |
| 30 | |
| 31 | class TestGetRequiredHeader(unittest.TestCase): |
no test coverage detected