• Home
  • Raw
  • Download

Lines Matching defs:testStrings

4495     const char *testStrings[] = { "foo", "boo", "woo", "moo" };
4499 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 3);
4500 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 2);
4501 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 1);
4506 const char *testStrings[] = { "foo", "boo", "woo", "moo" };
4510 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
4516 const char *testStrings[] = { "zoo", "boo", "woo", "moo" };
4520 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
4526 const char *testStrings[] = { "foo", "boo", "woo", NULL };
4530 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
4536 const char *testStrings[] = { "foo", "boo", "woo", "moo" };
4540 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
4546 const char **testStrings = NULL;
4550 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
4556 const char *testStrings[] = { "foo", "boo", "woo", "zoo" };
4560 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
4566 const char **testStrings = NULL;
4569 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
4574 const char *testStrings[] = {NULL};
4578 TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 0);
4596 const char *testStrings[] = { "foo", "foo", "foo", "moo" };
4599 TEST_ASSERT_EACH_EQUAL_STRING("foo", testStrings, 4);
4605 const char *testStrings[] = { "boo", "foo", "foo", "foo" };
4608 TEST_ASSERT_EACH_EQUAL_STRING("foo", testStrings, 4);
4614 const char *testStrings[] = { "foo", "foo", "foo", NULL };
4617 TEST_ASSERT_EACH_EQUAL_STRING("foo", testStrings, 4);
4623 const char *testStrings[] = { "foo", "foo", "woo", "foo" };
4626 TEST_ASSERT_EACH_EQUAL_STRING("foo", testStrings, 4);