| 58 | } |
| 59 | |
| 60 | void test_strvec__pushf(void) |
| 61 | { |
| 62 | struct strvec vec = STRVEC_INIT; |
| 63 | |
| 64 | strvec_pushf(&vec, "foo: %d", 1); |
| 65 | check_strvec(&vec, "foo: 1", NULL); |
| 66 | strvec_clear(&vec); |
| 67 | } |
| 68 | |
| 69 | void test_strvec__pushl(void) |
| 70 | { |
nothing calls this directly
no test coverage detected