/**
* @throws Exception
*/
@Test
public void shortBlobToSerializable() throws Exception {
assertThat((String) meta.shortBlobToSerializable(new ShortBlob(ByteUtil
.toByteArray("aaa"))), is("aaa"));
assertThat(meta.shortBlobToSerializable(null), is(nullValue()));
}