public void CheckServiceSale() { Transaction response = service.Charge(10m) .WithCurrency("USD") .WithPaymentMethod(check) .WithAddress(address) .Execute(); Assert.IsNotNull(response); Assert.AreEqual("00", response.ResponseCode); }