// [JACKSON-733]
public void testBinary() throws IOException
{
byte[] input = new byte[] { 1, 2, 3, -1, 8, 0, 42 };
ObjectMapper mapper = smileMapper();
byte[] smile = mapper.writeValueAsBytes(new BytesBean(input));
BytesBean result = mapper.readValue(smile, BytesBean.class);
assertNotNull(result.bytes);
Assert.assertArrayEquals(input, result.bytes);
}