113114115116117118119120121
} @Test public void testCodepointIterator() throws Exception { String s = "abcdefghijklmnop"; CodepointIterator ci = CodepointIterator.forCharSequence(s); while (ci.hasNext()) ci.next(); }
109110111112113114115116
} @Test public void testCodepointIterator() throws Exception { String s = "abcdefghijklmnop"; CodepointIterator ci = CodepointIterator.forCharSequence(s); while(ci.hasNext()) ci.next(); }