Lines Matching refs:testC00

35 static const char testC00[] = "The quick brown fox jumps over the lazy dog.  ";  variable
103 testC00, testC01, testC02, testC03, testC04, testC05, testC06, testC07,
263 test1 = OSString::withCStringNoCopy(testC00); in testString()
271 test1 = OSString::withCString(testC00); in testString()
273 TEST_ASSERT('s', "1b", testC00 != test1->getCStringNoCopy()); in testString()
274 TEST_ASSERT('s', "1c", strcmp(testC00, test1->getCStringNoCopy()) == 0); in testString()
275 TEST_ASSERT('s', "1d", strlen(testC00) == test1->getLength()); in testString()
276 TEST_ASSERT('s', "1e", test1->isEqualTo(testC00)); in testString()
285 test1 = OSString::withCStringNoCopy(testC00); in testString()
287 TEST_ASSERT('s', "2b", testC00 == test1->getCStringNoCopy()); in testString()
295 test1 = OSString::withCStringNoCopy(testC00); in testString()
311 test1 = OSString::withCStringNoCopy(testC00); in testString()
316 TEST_ASSERT('s', "4d", test1->isEqualTo(testC00)); in testString()
327 test1 = OSString::withCString(testC00); in testString()
332 TEST_ASSERT('s', "5d", test1->isEqualTo(testC00)); in testString()
343 test1 = OSString::withCString(testC00); in testString()
346 if (c != testC00[i]) { in testString()
353 TEST_ASSERT('s', "6e", !test1->isEqualTo(testC00)); in testString()
355 TEST_ASSERT('s', "6g", !test1->setChar(' ', sizeof(testC00))); in testString()
356 TEST_ASSERT('s', "6h", test1->isEqualTo(testC00)); in testString()
364 test1 = OSString::withCStringNoCopy(testC00); in testString()
367 if (c != testC00[i]) { in testString()
374 TEST_ASSERT('s', "7e", test1->isEqualTo(testC00)); in testString()
375 TEST_ASSERT('s', "7f", !test1->setChar(' ', sizeof(testC00))); in testString()
376 TEST_ASSERT('s', "7g", test1->isEqualTo(testC00)); in testString()
399 cache[0] = IOSymbol::withCStringNoCopy(testC00); in testSymbol()