CustomerCustomerEntityToCreate customer = (CustomerCustomerEntityToCreate) testObjects.get("customerRef");
int customerId = createCustomer(customer);
testObjects.put("customerId", customerId);
CustomerAddressEntityCreate address = (CustomerAddressEntityCreate) testObjects.get("customerAddressBefore");
int addressId = createCustomerAddress(customerId, address);
testObjects.put("addressId", addressId);
}
catch (Exception e) {