@Test
public void testCouponDeletePerCallAPIKey() throws StripeException {
Coupon createdCoupon = Coupon.create(getUniqueCouponParams(),
Stripe.apiKey);
DeletedCoupon deletedCoupon = createdCoupon.delete(Stripe.apiKey);
assertTrue(deletedCoupon.getDeleted());
assertEquals(deletedCoupon.getId(), createdCoupon.getId());
}