| 252 | } |
| 253 | |
| 254 | void test_strvec__split_empty_string(void) |
| 255 | { |
| 256 | struct strvec vec = STRVEC_INIT; |
| 257 | |
| 258 | strvec_split(&vec, ""); |
| 259 | check_strvec(&vec, NULL); |
| 260 | strvec_clear(&vec); |
| 261 | } |
| 262 | |
| 263 | void test_strvec__split_single_item(void) |
| 264 | { |
nothing calls this directly
no test coverage detected