| 233 | } |
| 234 | |
| 235 | void test_strvec__pop_empty_array(void) |
| 236 | { |
| 237 | struct strvec vec = STRVEC_INIT; |
| 238 | |
| 239 | strvec_pop(&vec); |
| 240 | check_strvec(&vec, NULL); |
| 241 | strvec_clear(&vec); |
| 242 | } |
| 243 | |
| 244 | void test_strvec__pop_non_empty_array(void) |
| 245 | { |
nothing calls this directly
no test coverage detected