Skip to content

Commit

Permalink
add test for CASE_FOLD_TURKISH_AZERI
Browse files Browse the repository at this point in the history
  • Loading branch information
lopex committed Apr 10, 2018
1 parent bf167c6 commit 592a79c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/org/jcodings/specific/TestCaseMap.java
Expand Up @@ -67,6 +67,9 @@ public void testUnicodeCaseMap() throws Exception {
assertTrue(caseMap(enc, "äÖÜ", Config.CASE_UPCASE | Config.CASE_DOWNCASE).equals("Äöü"));

assertTrue(caseMap(enc, "äöü", Config.CASE_UPCASE | Config.CASE_TITLECASE).equals("Äöü"));

assertTrue(caseMap(enc, "İ", Config.CASE_DOWNCASE).equals("i̇")); // i\u0307
assertTrue(caseMap(enc, "İ", Config.CASE_DOWNCASE | Config.CASE_FOLD_TURKISH_AZERI).equals("i"));
}

@Test
Expand Down

0 comments on commit 592a79c

Please sign in to comment.