Run an array of cases; accumulate failures and return total. */
| 162 | |
| 163 | /* Run an array of cases; accumulate failures and return total. */ |
| 164 | static int run_cases(const import_case_t *cases, int n) { |
| 165 | int failures = 0; |
| 166 | for (int i = 0; i < n; i++) { |
| 167 | failures += run_import_case(&cases[i]); |
| 168 | } |
| 169 | return failures; |
| 170 | } |
| 171 | |
| 172 | /* ═══════════════════════════════════════════════════════════════════════════ |
| 173 | * Go — dedicated parse_go_imports, expected GREEN for all forms |
no test coverage detected