updated AbstractRestAPITest

This commit is contained in:
dartpopikyardo
2016-09-20 10:41:41 +03:00
parent b06d607b6e
commit 974f2b991a

View File

@@ -29,6 +29,8 @@ public abstract class AbstractRestAPITest {
final CustomerResponse customerResponse = getRestTemplate().postForEntity(baseUrl("/customers"), customerInfo, CustomerResponse.class).getBody();
final String customerId = customerResponse.getId();
getCustomersTestUtils().assertCustomerResponse(customerId, customerInfo);
BigDecimal initialFromAccountBalance = new BigDecimal(500);
BigDecimal initialToAccountBalance = new BigDecimal(100);
BigDecimal amountToTransfer = new BigDecimal(150);