expose another edge case for syllabification failure

This commit is contained in:
Ingmar Steiner 2015-07-15 12:34:52 +02:00
Родитель 9d7889f533
Коммит d89491941c
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -177,4 +177,11 @@ public class AllophoneSetTest {
// @formatter:on // @formatter:on
} }
@Test(expectedExceptions = IllegalArgumentException.class)
public void testLegacySyllabifyWithoutNucleus() {
String actual = allophoneSet.syllabify("s1");
String expected = "' s";
Assert.assertEquals(actual, expected);
}
} }