MCPcopy Create free account
hub / github.com/containers/bubblewrap / test_strconcat3

Function test_strconcat3

tests/test-utils.c:139–148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

137}
138
139static void
140test_strconcat3 (void)
141{
142 const char *a = "aaa";
143 const char *b = "bbb";
144 const char *c = "ccc";
145 char *abc = strconcat3 (a, b, c);
146 g_assert_cmpstr (abc, ==, "aaabbbccc");
147 free (abc);
148}
149
150static void
151test_has_prefix (void)

Callers 1

mainFunction · 0.85

Calls 1

strconcat3Function · 0.85

Tested by

no test coverage detected