| 242 | } |
| 243 | |
| 244 | void test_strvec__pop_non_empty_array(void) |
| 245 | { |
| 246 | struct strvec vec = STRVEC_INIT; |
| 247 | |
| 248 | strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 249 | strvec_pop(&vec); |
| 250 | check_strvec(&vec, "foo", "bar", NULL); |
| 251 | strvec_clear(&vec); |
| 252 | } |
| 253 | |
| 254 | void test_strvec__split_empty_string(void) |
| 255 | { |
nothing calls this directly
no test coverage detected