(&self, file_path: &str, _project_root: &Path)
| 3488 | } |
| 3489 | |
| 3490 | fn should_process_file(&self, file_path: &str, _project_root: &Path) -> bool { |
| 3491 | is_under_dir(file_path, "examples") |
| 3492 | && ends_with_any(file_path, &[".cpp", ".h", ".hpp", ".ino"]) |
| 3493 | } |
| 3494 | |
| 3495 | fn check_file_content(&self, file_content: &FileContent) -> Vec<(usize, String)> { |
| 3496 | let mut violations = Vec::new(); |
no test coverage detected