taxs.add(tax);
return taxs;
}
private SimpleAmountDTO createExpectedAmountDTO(Currency currency, BigDecimal amount) {
SimpleAmountDTO simpleAmountDTO = new SimpleAmountDTO();
simpleAmountDTO.setCurrency(currency);
simpleAmountDTO.setAmount(amount);
return simpleAmountDTO;
}