| 76 | } |
| 77 | |
| 78 | void test_strvec__pushv(void) |
| 79 | { |
| 80 | const char *strings[] = { |
| 81 | "foo", "bar", "baz", NULL, |
| 82 | }; |
| 83 | struct strvec vec = STRVEC_INIT; |
| 84 | |
| 85 | strvec_pushv(&vec, strings); |
| 86 | check_strvec(&vec, "foo", "bar", "baz", NULL); |
| 87 | |
| 88 | strvec_clear(&vec); |
| 89 | } |
| 90 | |
| 91 | void test_strvec__splice_just_initialized_strvec(void) |
| 92 | { |
nothing calls this directly
no test coverage detected