| 261 | } |
| 262 | |
| 263 | void test_strvec__split_single_item(void) |
| 264 | { |
| 265 | struct strvec vec = STRVEC_INIT; |
| 266 | |
| 267 | strvec_split(&vec, "foo"); |
| 268 | check_strvec(&vec, "foo", NULL); |
| 269 | strvec_clear(&vec); |
| 270 | } |
| 271 | |
| 272 | void test_strvec__split_multiple_items(void) |
| 273 | { |
nothing calls this directly
no test coverage detected