add blank char

This commit is contained in:
Looly
2022-10-10 22:06:49 +08:00
parent 5fceca0bbc
commit 66d5e4d3e9
2 changed files with 7 additions and 2 deletions

View File

@@ -58,7 +58,10 @@ public class CharUtilTest {
@Test
public void issueI5UGSQTest(){
final Character c = '\u3164';
char c = '\u3164';
Assert.assertTrue(CharUtil.isBlankChar(c));
c = '\u2800';
Assert.assertTrue(CharUtil.isBlankChar(c));
}
}