@Test(expectedExceptions = IOException.class)
public void testJacksonDataCodecErrorEmptyInput() throws IOException
{
final JacksonDataCodec codec = new JacksonDataCodec();
final ByteArrayInputStream in = new ByteArrayInputStream(new byte[0]);
codec.readMap(in);
}
@Test(expectedExceptions = DataDecodingException.class)
public void testJacksonDataCodecErrorToList() throws IOException
{