Lines Matching refs:testStrings
177 const char *testStrings[] = { "foo", "boo", "woo", "moo" };
181 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 3);
182 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 2);
183 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 1);
188 const char *testStrings[] = { "foo", "boo", "woo", "moo" };
192 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
198 const char *testStrings[] = { "zoo", "boo", "woo", "moo" };
202 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
208 const char *testStrings[] = { "foo", "boo", "woo", NULL };
212 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
218 const char *testStrings[] = { "foo", "boo", "woo", "moo" };
222 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
228 const char **testStrings = NULL;
232 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
238 const char *testStrings[] = { "foo", "boo", "woo", "zoo" };
242 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
248 const char **testStrings = NULL;
251 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
256 const char *testStrings[] = {NULL};
260 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 0);
278 const char *testStrings[] = { "foo", "foo", "foo", "moo" };
281 TEST_ASSERT_EACH_EQUAL_STRING("foo", testStrings, 4);
287 const char *testStrings[] = { "boo", "foo", "foo", "foo" };
290 TEST_ASSERT_EACH_EQUAL_STRING("foo", testStrings, 4);
296 const char *testStrings[] = { "foo", "foo", "foo", NULL };
299 TEST_ASSERT_EACH_EQUAL_STRING("foo", testStrings, 4);
305 const char *testStrings[] = { "foo", "foo", "woo", "foo" };
308 TEST_ASSERT_EACH_EQUAL_STRING("foo", testStrings, 4);