Home | History | Annotate | Download | only in intltest

Lines Matching refs:expectedResult

72     UnicodeString expectedResult;
80 expectedResult = UnicodeString("i\\u0307stanbul, not constantinople!", "").unescape();
81 if (test4 != expectedResult)
82 errln("1. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
86 expectedResult = lowercaseTurkish;
87 if (test4 != expectedResult)
88 errln("2. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
96 expectedResult = "TOPKAPI PALACE, ISTANBUL";
97 if (test4 != expectedResult)
98 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
102 expectedResult = uppercaseTurkish;
103 if (test4 != expectedResult)
104 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
109 expectedResult = CharsToUnicodeString("S\\u00DCSSMAYRSTRASSE");
110 if (test3 != expectedResult)
111 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test3 + "\".");
116 expectedResult = lowercaseGreek;
117 if (test4 != expectedResult)
118 errln("toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
123 expectedResult = uppercaseGreek;
124 if (test4 != expectedResult)
125 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");