mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-15 09:45:26 +00:00
ICU-12590
X-SVN-Rev: 39281
This commit is contained in:
parent
d35c86b096
commit
dd65e19e36
1 changed files with 2 additions and 2 deletions
|
@ -3005,14 +3005,14 @@ public final class UCharacterTest extends TestFmwk
|
|||
|
||||
@Test
|
||||
public void testToTitleCase_Locale_String_BreakIterator_I() {
|
||||
String titleCase = UCharacter.toTitleCase(Locale.forLanguageTag("nl"), "ijsland", null,
|
||||
String titleCase = UCharacter.toTitleCase(new Locale("nl"), "ijsland", null,
|
||||
UCharacter.FOLD_CASE_DEFAULT);
|
||||
assertEquals("Wrong title casing", "IJsland", titleCase);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testToTitleCase_String_BreakIterator_en() {
|
||||
String titleCase = UCharacter.toTitleCase(Locale.forLanguageTag("en"), "ijsland", null);
|
||||
String titleCase = UCharacter.toTitleCase(new Locale("en"), "ijsland", null);
|
||||
assertEquals("Wrong title casing", "Ijsland", titleCase);
|
||||
}
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue