| 193 | } |
| 194 | |
| 195 | static int count_by_label(const char *label) { |
| 196 | char *resp = |
| 197 | call_tool("search_graph", "{\"project\":\"%s\",\"label\":\"%s\"}", g_project, label); |
| 198 | int total = count_in_response(resp, "total"); |
| 199 | free(resp); |
| 200 | return total; |
| 201 | } |
| 202 | |
| 203 | /* ── Setup / Teardown ─────────────────────────────────────────────── */ |
| 204 |
no test coverage detected