StringBuffer testBuffer = new StringBuffer();
for (int script = 0; script < UScript.CODE_LIMIT; ++script) {
UnicodeSet test = new UnicodeSet().applyPropertyAlias("script", UScript.getName(script));
int count = Math.min(20, test.size());
for (int i = 0; i < count; ++i){
testBuffer.append(UTF16.valueOf(test.charAt(i)));
}
}
String test = testBuffer.toString();
logln("Test line: " + test);