コード例 #1
0
        public void CreditServiceSale()
        {
            Transaction response = service.Charge(11.01m)
                                   .WithCurrency("USD")
                                   .WithPaymentMethod(card)
                                   .Execute();

            Assert.IsNotNull(response);
            Assert.AreEqual("00", response.ResponseCode);
        }