Assert.assertEquals("test", customers.get(0).getName());
}
@Test
public void testRoundTripGetAllCustomers() throws Exception {
GetAllCustomersResponse response = customerService.getAllCustomers();
Assert.assertEquals(1, response.getReturn().size());
Customer firstCustomer = response.getReturn().get(0);
Assert.assertEquals(100000.0, firstCustomer.getRevenue(), 0.00001);
}