| 279 | } |
| 280 | |
| 281 | void test_strvec__split_whitespace_only(void) |
| 282 | { |
| 283 | struct strvec vec = STRVEC_INIT; |
| 284 | |
| 285 | strvec_split(&vec, " \t\n"); |
| 286 | check_strvec(&vec, NULL); |
| 287 | strvec_clear(&vec); |
| 288 | } |
| 289 | |
| 290 | void test_strvec__split_multiple_consecutive_whitespaces(void) |
| 291 | { |
nothing calls this directly
no test coverage detected