template.sendBody("direct:unmarshal", "1,hei,kommentar,test,noe,hei");
assertMockEndpointsSatisfied();
final List<Map<?, SpanLastRecord>> rows = CastUtils.cast(mock.getReceivedExchanges().get(0).getIn().getBody(List.class));
final SpanLastRecord order = rows.get(0).get(SpanLastRecord.class.getName());
assertEquals(1, order.getRecordId());
assertEquals("hei", order.getName());
assertEquals("kommentar,test,noe,hei", order.getComment());
}