Test wcwidth on two more code points

This commit is contained in:
Fredrik Fornwall
2016-12-30 02:39:01 +01:00
parent 11afe895e1
commit d48b438c40

View File

@@ -19,6 +19,7 @@ public class WcWidthTest extends TestCase {
assertWidthIs(1, 'å'); assertWidthIs(1, 'å');
assertWidthIs(1, 'ä'); assertWidthIs(1, 'ä');
assertWidthIs(1, 'ö'); assertWidthIs(1, 'ö');
assertWidthIs(1, 0x23F2);
} }
public void testSomeWide() { public void testSomeWide() {
@@ -45,6 +46,7 @@ public class WcWidthTest extends TestCase {
public void testCombining() { public void testCombining() {
assertWidthIs(0, 0x0302); assertWidthIs(0, 0x0302);
assertWidthIs(0, 0x0308); assertWidthIs(0, 0x0308);
assertWidthIs(0, 0xFE0F);
} }
public void testWordJoiner() { public void testWordJoiner() {