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