Lines Matching refs:test3
70 UnicodeString test3; in TestCaseConversion() local
72 test3 += (UChar32)0x0130; in TestCaseConversion()
73 test3 += "STANBUL, NOT CONSTANTINOPLE!"; in TestCaseConversion()
75 UnicodeString test4(test3); in TestCaseConversion()
81 test4 = test3; in TestCaseConversion()
87 test3 = "topkap"; in TestCaseConversion()
88 test3 += (UChar32)0x0131; in TestCaseConversion()
89 test3 += " palace, istanbul"; in TestCaseConversion()
90 test4 = test3; in TestCaseConversion()
97 test4 = test3; in TestCaseConversion()
103 test3 = CharsToUnicodeString("S\\u00FC\\u00DFmayrstra\\u00DFe"); in TestCaseConversion()
105 test3.toUpper(Locale("de", "DE")); in TestCaseConversion()
107 if (test3 != expectedResult) in TestCaseConversion()
108 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test3 + "\"."); in TestCaseConversion()