()
| 1144 | |
| 1145 | #[tokio::test] |
| 1146 | async fn test_parse_functions_empty_file() { |
| 1147 | let backend = create_test_backend(); |
| 1148 | let php = "<?php\n// nothing here\n"; |
| 1149 | |
| 1150 | let functions = backend.parse_functions(php); |
| 1151 | assert!(functions.is_empty(), "No functions in an empty file"); |
| 1152 | } |
| 1153 | |
| 1154 | // ─── Functions inside if-guards ───────────────────────────────────────────── |
| 1155 |
nothing calls this directly
no test coverage detected