| 24 | } |
| 25 | |
| 26 | void test_strvec__dynamic_init(void) |
| 27 | { |
| 28 | struct strvec vec; |
| 29 | |
| 30 | strvec_init(&vec); |
| 31 | cl_assert_equal_p(vec.v, empty_strvec); |
| 32 | cl_assert_equal_i(vec.nr, 0); |
| 33 | cl_assert_equal_i(vec.alloc, 0); |
| 34 | } |
| 35 | |
| 36 | void test_strvec__clear(void) |
| 37 | { |
nothing calls this directly
no test coverage detected