| 89 | } |
| 90 | |
| 91 | void test_strvec__splice_just_initialized_strvec(void) |
| 92 | { |
| 93 | struct strvec vec = STRVEC_INIT; |
| 94 | const char *replacement[] = { "foo" }; |
| 95 | |
| 96 | strvec_splice(&vec, 0, 0, replacement, ARRAY_SIZE(replacement)); |
| 97 | check_strvec(&vec, "foo", NULL); |
| 98 | strvec_clear(&vec); |
| 99 | } |
| 100 | |
| 101 | void test_strvec__splice_with_same_size_replacement(void) |
| 102 | { |
nothing calls this directly
no test coverage detected