public void TestBugJ2068(){
String sample = "The quick brown fox jumped over the lazy dog";
UCharacterIterator text = UCharacterIterator.getInstance(sample);
Normalizer norm = new Normalizer(text,Normalizer.NFC,0);
text.setIndex(4);
if(text.current() == norm.current()){
errln("Normalizer is not cloning the UCharacterIterator");
}
}
public void TestGetCombiningClass(){
for(int i=0;i<0x10FFFF;i++){