public void ListCharges_Test() { StripeArray response = _client.ListCharges(); Assert.NotNull(response); Assert.False(response.IsError); Assert.True(response.Any()); }
public void ListCharges_Test() { var response = _client.ListCharges(); Assert.IsNotNull(response); Assert.IsFalse(response.IsError); Assert.IsNotNull(response.Data); Assert.IsTrue(response.Data.Count > 0); }