Home | History | Annotate | Download | only in intltest

Lines Matching full:test3

71     UnicodeString   test3;
73 test3 += (UChar32)0x0130;
74 test3 += "STANBUL, NOT CONSTANTINOPLE!";
76 UnicodeString test4(test3);
82 test4 = test3;
88 test3 = "topkap";
89 test3 += (UChar32)0x0131;
90 test3 += " palace, istanbul";
91 test4 = test3;
98 test4 = test3;
104 test3 = CharsToUnicodeString("S\\u00FC\\u00DFmayrstra\\u00DFe");
106 test3.toUpper(Locale("de", "DE"));
108 if (test3 != expectedResult)
109 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test3 + "\".");