Ejemplo n.º 1
0
 @Test(expected = com.balancedpayments.errors.APIError.class)
 public void testUnstoreCustomerNotExist() throws HTTPError, NotCreated {
   Customer buyer = new Customer("/customers/12j5hl21lu35gui");
   buyer.unstore();
 }
Ejemplo n.º 2
0
 @Test
 public void testUnstore() throws HTTPError, NotCreated {
   Customer buyer = createBusinessCustomer();
   buyer.unstore();
 }