mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-12-03 07:31:09 +01:00
Test wcwidth on two more code points
This commit is contained in:
parent
11afe895e1
commit
d48b438c40
1 changed files with 2 additions and 0 deletions
|
|
@ -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() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue