public void testDecodeStrings() throws Exception {
Object bin = Bert.decode(new byte[]{ -125, 109, 0, 0, 0, 5, 104, 101,
108, 108, 111});
Assert.assertThat("recognises binary",
bin,
new IsInstanceOf(byte[].class));
Assert.assertArrayEquals("decodes binary",
new byte[]{104, 101, 108, 108, 111},
(byte[]) bin);
Assert.assertEquals("decodes strings",