e.setProperty("key", "value");
e.setStatus(Status.Done);
Message msg = e.getIn();
msg.setHeader("header", "value");
msg.addAttachment("id", new BufferedInputStream(new ByteArrayInputStream(new byte[] { 1, 2, 3, 4 })));
msg.setBody(new StringSource("<hello/>"));
String str = e.display(false);
LOG.info(str);
assertNotNull(msg.getBody());
assertTrue(msg.getBody() instanceof StringSource);