public void testMarshalling1() throws Exception {
MockEndpoint mock = getMockEndpoint("mock:marshal");
mock.expectedMessageCount(1);
mock.expectedBodiesReceived("050,010\r\n");
Unity unity = new Unity();
unity.setMandant(50f);
unity.setReceiver(10f);
template.sendBody("direct:marshal", unity);
assertMockEndpointsSatisfied();
}