public class TestUTF8_4 extends TestCase {
public void test_error_0() throws Exception {
byte[] bytes = decodeHex("FBB0B0B0B0B0".toCharArray());
UTF8Decoder charsetDecoder = new UTF8Decoder();
int scaleLength = (int) (bytes.length * (double) charsetDecoder.maxCharsPerByte());
char[] chars = ThreadLocalCache.getChars(scaleLength);
CharBuffer charBuffer = CharBuffer.wrap(chars);
Exception error = null;