@Test
public void testChargeListWithTotalCount() throws StripeException {
Map<String, Object> listParams = new HashMap<String, Object>();
listParams.put("include[]", "total_count");
ChargeCollection chargeCollection = Charge.all(listParams);
assertFalse(chargeCollection.getTotalCount() == null);
assertTrue(chargeCollection.getTotalCount() > 0);
}