| 213 | } |
| 214 | |
| 215 | void test_strvec__remove_at_tail(void) |
| 216 | { |
| 217 | struct strvec vec = STRVEC_INIT; |
| 218 | |
| 219 | strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 220 | strvec_remove(&vec, 2); |
| 221 | check_strvec(&vec, "foo", "bar", NULL); |
| 222 | strvec_clear(&vec); |
| 223 | } |
| 224 | |
| 225 | void test_strvec__remove_in_between(void) |
| 226 | { |
nothing calls this directly
no test coverage detected