// lets test we receive the camel event
exchange = result.getReceivedExchanges().get(1);
body = exchange.getIn().getBody();
log.info("Received body: " + body);
CamelEvent event = assertIsInstanceOf(CamelEvent.class, body);
Object actualBody = event.getExchange().getIn().getBody();
assertEquals("Received event body", expectedBody, actualBody);
}