public void concurrentMarshallSuccess() throws Exception {
mockMarshall.expectedMessageCount(testCount);
Address address = new Address();
address.setAddressLine1("Hauptstr. 1; 01129 Entenhausen");
Person person = new Person();
person.setFirstName("Christian");
person.setLastName("Mueller");
person.setAge(Integer.valueOf(36));
person.setAddress(address);
long start = System.currentTimeMillis();
for (int i = 0; i < testCount; i++) {
template.sendBody("seda:marshall", person);
}