@Test(expected=InvalidRequestException.class)
public void testCustomerUpdateToBlank() throws StripeException {
Customer createdCustomer = Customer.create(defaultCustomerParams);
Map<String, Object> updateParams = new HashMap<String, Object>();
updateParams.put("description", "");
createdCustomer.update(updateParams);
}
@Test
public void testCustomerUpdateToNull() throws StripeException {
Customer createdCustomer = Customer.create(defaultCustomerParams);