| 223 | } |
| 224 | |
| 225 | void test_strvec__remove_in_between(void) |
| 226 | { |
| 227 | struct strvec vec = STRVEC_INIT; |
| 228 | |
| 229 | strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 230 | strvec_remove(&vec, 1); |
| 231 | check_strvec(&vec, "foo", "baz", NULL); |
| 232 | strvec_clear(&vec); |
| 233 | } |
| 234 | |
| 235 | void test_strvec__pop_empty_array(void) |
| 236 | { |
nothing calls this directly
no test coverage detected