Home | History | Annotate | Download | only in intltest

Lines Matching full:test4

74     UnicodeString   test4(test3);
75 test4.toLower(Locale(""));
77 if (test4 != expectedResult)
78 errln("1. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
80 test4 = test3;
81 test4.toLower(Locale("tr", "TR"));
83 if (test4 != expectedResult)
84 errln("2. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
89 test4 = test3;
91 test4.toUpper(Locale(""));
93 if (test4 != expectedResult)
94 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
96 test4 = test3;
97 test4.toUpper(Locale("tr", "TR"));
99 if (test4 != expectedResult)
100 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
109 test4.replace(0, test4.length(), uppercaseGreek);
111 test4.toLower(Locale("el", "GR"));
113 if (test4 != expectedResult)
114 errln("toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");
116 test4.replace(0, test4.length(), lowercaseGreek);
118 test4.toUpper();
120 if (test4 != expectedResult)
121 errln("toUpper failed: expected \"" + expectedResult + "\", got \"" + test4 + "\".");