• Home
  • Raw
  • Download

Lines Matching refs:testText

164 …  UnicodeString  testText("Now is the time for all good men to come to the aid of their country.");  in TestCoverage()  local
167 SCharacterIterator* test = new SCharacterIterator(testText); in TestCoverage()
174 if(test->getLength()!=testText.length()){ in TestCoverage()
182 if(test->getIndex()!=testText.length()){ in TestCoverage()
197 … UnicodeString testText("Now is the time for all good men to come to the aid of their country."); in TestConstructionAndEquality() local
201 CharacterIterator* test1 = new StringCharacterIterator(testText); in TestConstructionAndEquality()
202 CharacterIterator* test1b= new StringCharacterIterator(testText, -1); in TestConstructionAndEquality()
203 CharacterIterator* test1c= new StringCharacterIterator(testText, 100); in TestConstructionAndEquality()
204 CharacterIterator* test1d= new StringCharacterIterator(testText, -2, 100, 5); in TestConstructionAndEquality()
205 CharacterIterator* test1e= new StringCharacterIterator(testText, 100, 20, 5); in TestConstructionAndEquality()
206 CharacterIterator* test2 = new StringCharacterIterator(testText, 5); in TestConstructionAndEquality()
207 CharacterIterator* test3 = new StringCharacterIterator(testText, 2, 20, 5); in TestConstructionAndEquality()
213 if (test1d->endIndex() > testText.length()) in TestConstructionAndEquality()
230 if(test1->getLength() != testText.length()){ in TestConstructionAndEquality()
258 StringCharacterIterator* testChar1=new StringCharacterIterator(testText); in TestConstructionAndEquality()
271 testChar3->setText(testText); in TestConstructionAndEquality()
283 …U_STRING_DECL(testText, "Now is the time for all good men to come to the aid of their country.", 6… in TestConstructionAndEqualityUChariter()
286 …U_STRING_INIT(testText, "Now is the time for all good men to come to the aid of their country.", 6… in TestConstructionAndEqualityUChariter()
291 UCharCharacterIterator* test1 = new UCharCharacterIterator(testText, u_strlen(testText)); in TestConstructionAndEqualityUChariter()
292 UCharCharacterIterator* test2 = new UCharCharacterIterator(testText, u_strlen(testText), 5); in TestConstructionAndEqualityUChariter()
293 …UCharCharacterIterator* test3 = new UCharCharacterIterator(testText, u_strlen(testText), 2, 20, 5); in TestConstructionAndEqualityUChariter()
299 UCharCharacterIterator* test7a = new UCharCharacterIterator(testText, -1); in TestConstructionAndEqualityUChariter()
300 UCharCharacterIterator* test7b = new UCharCharacterIterator(testText, -1); in TestConstructionAndEqualityUChariter()
301 UCharCharacterIterator* test7c = new UCharCharacterIterator(testText, -1, 2, 20, 5); in TestConstructionAndEqualityUChariter()
304 UCharCharacterIterator* test8a = new UCharCharacterIterator(testText, -1, -1, 20, 5); in TestConstructionAndEqualityUChariter()
305 UCharCharacterIterator* test8b = new UCharCharacterIterator(testText, -1, 2, 100, 5); in TestConstructionAndEqualityUChariter()
306 UCharCharacterIterator* test8c = new UCharCharacterIterator(testText, -1, 2, 20, 100); in TestConstructionAndEqualityUChariter()
310 if (test8b->endIndex() != u_strlen(testText)) in TestConstructionAndEqualityUChariter()
334 if(result != UnicodeString(testText) || result4 != result || result5 != result) in TestConstructionAndEqualityUChariter()
346 test5->setText(testText, u_strlen(testText)); in TestConstructionAndEqualityUChariter()