Home | History | Annotate | Download | only in intltest

Lines Matching refs:test4

144     UnicodeString   test4(test3);
145 test4.toLower(Locale(""));
147 if (test4 != expectedResult)
148 errln("1. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
150 test4 = test3;
151 test4.toLower(Locale("tr", "TR"));
153 if (test4 != expectedResult)
154 errln("2. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
159 test4 = test3;
161 test4.toUpper(Locale(""));
163 if (test4 != expectedResult)
164 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
166 test4 = test3;
167 test4.toUpper(Locale("tr", "TR"));
169 if (test4 != expectedResult)
170 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
179 test4.replace(0, test4.length(), uppercaseGreek);
181 test4.toLower(Locale("el", "GR"));
183 if (test4 != expectedResult)
184 errln("toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
186 test4.replace(0, test4.length(), lowercaseGreek);
188 test4.toUpper();
190 if (test4 != expectedResult)
191 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");