}
public void testMinUTF8ByteLength() throws Exception {
assertEquals(true, new MinUTFByteLength(b, SVALUE, 0).isValid()) ;
b.setSvalue("abc") ;
assertEquals(true, new MinUTFByteLength(b, SVALUE, 3).isValid()) ;
assertEquals(false, new MinUTFByteLength(b, SVALUE, 4).isValid()) ;
b.setSvalue("�ѱ�") ;
assertEquals(true, new MinUTFByteLength(b, SVALUE, 6).isValid()) ;
assertEquals(false, new MinUTFByteLength(b, SVALUE, 7).isValid()) ;
}