作者 crossoverJie

:white_check_mark: Adding tests.

@@ -204,4 +204,12 @@ public class CommonTest { @@ -204,4 +204,12 @@ public class CommonTest {
204 204
205 } 205 }
206 206
  207 + @Test
  208 + public void emoji2(){
  209 + String emostring ="😂";
  210 + System.out.println(emostring.length());
  211 + System.out.println(new StringBuilder().appendCodePoint(
  212 + emostring.codePointAt(emostring.offsetByCodePoints(0, 1))).toString());
  213 + }
  214 +
207 } 215 }