Lines Matching refs:testString
38 const char *testString = "foo"; in testEqualStrings() local
40 TEST_ASSERT_EQUAL_STRING(testString, testString); in testEqualStrings()
42 TEST_ASSERT_EQUAL_STRING("foo", testString); in testEqualStrings()
43 TEST_ASSERT_EQUAL_STRING(testString, "foo"); in testEqualStrings()
49 const char *testString = "foobar"; in testEqualStringsLen() local
50 TEST_ASSERT_EQUAL_STRING_LEN(testString, testString, strlen(testString)); in testEqualStringsLen()
52 TEST_ASSERT_EQUAL_STRING_LEN("foo", testString, 3); in testEqualStringsLen()
53 TEST_ASSERT_EQUAL_STRING_LEN(testString, "foo", 3); in testEqualStringsLen()
59 const char *testString = "foo\r\nbar"; in testEqualStringsWithCarriageReturnsAndLineFeeds() local
61 TEST_ASSERT_EQUAL_STRING(testString, testString); in testEqualStringsWithCarriageReturnsAndLineFeeds()
63 TEST_ASSERT_EQUAL_STRING("foo\r\nbar", testString); in testEqualStringsWithCarriageReturnsAndLineFeeds()
64 TEST_ASSERT_EQUAL_STRING(testString, "foo\r\nbar"); in testEqualStringsWithCarriageReturnsAndLineFeeds()