| 174 | } |
| 175 | |
| 176 | void test_strvec__replace_at_tail(void) |
| 177 | { |
| 178 | struct strvec vec = STRVEC_INIT; |
| 179 | strvec_pushl(&vec, "foo", "bar", "baz", NULL); |
| 180 | strvec_replace(&vec, 2, "replaced"); |
| 181 | check_strvec(&vec, "foo", "bar", "replaced", NULL); |
| 182 | strvec_clear(&vec); |
| 183 | } |
| 184 | |
| 185 | void test_strvec__replace_in_between(void) |
| 186 | { |
nothing calls this directly
no test coverage detected