MCPcopy Index your code
hub / github.com/git/git / test_strvec__pushl

Function test_strvec__pushl

t/unit-tests/u-strvec.c:69–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69void test_strvec__pushl(void)
70{
71 struct strvec vec = STRVEC_INIT;
72
73 strvec_pushl(&vec, "foo", "bar", "baz", NULL);
74 check_strvec(&vec, "foo", "bar", "baz", NULL);
75 strvec_clear(&vec);
76}
77
78void test_strvec__pushv(void)
79{

Callers

nothing calls this directly

Calls 2

strvec_pushlFunction · 0.85
strvec_clearFunction · 0.85

Tested by

no test coverage detected