Lines Matching refs:test

25     @test
43 test("\u03A3", Locale.US, "\u03C3");
44 test("LAST\u03A3", Locale.US, "last\u03C2");
45 test("MID\u03A3DLE", Locale.US, "mid\u03C3dle");
46 test("WORD1 \u03A3 WORD3", Locale.US, "word1 \u03C3 word3");
47 test("WORD1 LAST\u03A3 WORD3", Locale.US, "word1 last\u03C2 word3");
48 test("WORD1 MID\u03A3DLE WORD3", Locale.US, "word1 mid\u03C3dle word3");
49 test("\u0399\u0395\u03a3\u03a5\u03a3 \u03a7\u03a1\u0399\u03a3\u03a4\u039f\u03a3", Locale.US,
53 test("I", lt, "i");
54 test("I\u0300", lt, "i\u0307\u0300"); // "I" followed by COMBINING GRAVE ACCENT (cc==230)
55 test("I\u0316", lt, "i\u0316"); // "I" followed by COMBINING GRAVE ACCENT BELOW (cc!=230)
56 test("J", lt, "j");
57 test("J\u0300", lt, "j\u0307\u0300"); // "J" followed by COMBINING GRAVE ACCENT (cc==230)
58 test("J\u0316", lt, "j\u0316"); // "J" followed by COMBINING GRAVE ACCENT BELOW (cc!=230)
59 test("\u012E", lt, "\u012F");
60 test("\u012E\u0300", lt, "\u012F\u0307\u0300"); // "I (w/ OGONEK)" followed by COMBINING GRAVE ACCENT (cc==230)
61 test("\u012E\u0316", lt, "\u012F\u0316"); // "I (w/ OGONEK)" followed by COMBINING GRAVE ACCENT BELOW (cc!=230)
62 test("\u00CC", lt, "i\u0307\u0300");
63 test("\u00CD", lt, "i\u0307\u0301");
64 test("\u0128", lt, "i\u0307\u0303");
65 test("I\u0300", Locale.US, "i\u0300"); // "I" followed by COMBINING GRAVE ACCENT (cc==230)
66 test("J\u0300", Locale.US, "j\u0300"); // "J" followed by COMBINING GRAVE ACCENT (cc==230)
67 test("\u012E\u0300", Locale.US, "\u012F\u0300"); // "I (w/ OGONEK)" followed by COMBINING GRAVE ACCENT (cc==230)
68 test("\u00CC", Locale.US, "\u00EC");
69 test("\u00CD", Locale.US, "\u00ED");
70 test("\u0128", Locale.US, "\u0129");
73 test("\u0130", turkish, "i");
74 test("\u0130", az, "i");
75 test("\u0130", Locale.US, "i\u0307");
78 test("I\u0307", turkish, "i");
79 test("I\u0307", az, "i");
80 test("J\u0307", turkish, "j\u0307");
81 test("J\u0307", az, "j\u0307");
84 test("I", turkish, "\u0131");
85 test("I", az, "\u0131");
86 test("I", Locale.US, "i");
87 test("IABC", turkish, "\u0131abc");
88 test("IABC", az, "\u0131abc");
89 test("IABC", Locale.US, "iabc");
101 test("\uD801\uDC00\uD801\uDC01\uD801\uDC02", Locale.US, "\uD801\uDC28\uD801\uDC29\uD801\uDC2A");
102 test("\uD801\uDC00A\uD801\uDC01B\uD801\uDC02C", Locale.US, "\uD801\uDC28a\uD801\uDC29b\uD801\uDC2Ac");
104 test("\uD800\uD800\uD801A\uDC00\uDC00\uDC00B", Locale.US, "\uD800\uD800\uD801a\uDC00\uDC00\uDC00b");
108 static void test(String in, Locale locale, String expected) {