Home | History | Annotate | Download | only in intltest

Lines Matching refs:testText

160     UnicodeString  testText("Now is the time for all good men to come to the aid of their country.");
163 SCharacterIterator* test = new SCharacterIterator(testText);
170 if(test->getLength()!=testText.length()){
178 if(test->getIndex()!=testText.length()){
193 UnicodeString testText("Now is the time for all good men to come to the aid of their country.");
197 CharacterIterator* test1 = new StringCharacterIterator(testText);
198 CharacterIterator* test1b= new StringCharacterIterator(testText, -1);
199 CharacterIterator* test1c= new StringCharacterIterator(testText, 100);
200 CharacterIterator* test1d= new StringCharacterIterator(testText, -2, 100, 5);
201 CharacterIterator* test1e= new StringCharacterIterator(testText, 100, 20, 5);
202 CharacterIterator* test2 = new StringCharacterIterator(testText, 5);
203 CharacterIterator* test3 = new StringCharacterIterator(testText, 2, 20, 5);
209 if (test1d->endIndex() > testText.length())
226 if(test1->getLength() != testText.length()){
254 StringCharacterIterator* testChar1=new StringCharacterIterator(testText);
267 testChar3->setText(testText);
279 U_STRING_DECL(testText, "Now is the time for all good men to come to the aid of their country.", 69);
282 U_STRING_INIT(testText, "Now is the time for all good men to come to the aid of their country.", 69);
287 UCharCharacterIterator* test1 = new UCharCharacterIterator(testText, u_strlen(testText));
288 UCharCharacterIterator* test2 = new UCharCharacterIterator(testText, u_strlen(testText), 5);
289 UCharCharacterIterator* test3 = new UCharCharacterIterator(testText, u_strlen(testText), 2, 20, 5);
295 UCharCharacterIterator* test7a = new UCharCharacterIterator(testText, -1);
296 UCharCharacterIterator* test7b = new UCharCharacterIterator(testText, -1);
297 UCharCharacterIterator* test7c = new UCharCharacterIterator(testText, -1, 2, 20, 5);
300 UCharCharacterIterator* test8a = new UCharCharacterIterator(testText, -1, -1, 20, 5);
301 UCharCharacterIterator* test8b = new UCharCharacterIterator(testText, -1, 2, 100, 5);
302 UCharCharacterIterator* test8c = new UCharCharacterIterator(testText, -1, 2, 20, 100);
306 if (test8b->endIndex() != u_strlen(testText))
330 if(result != UnicodeString(testText) || result4 != result || result5 != result)
342 test5->setText(testText, u_strlen(testText));