Beispiel #1
0
        public void CreditServiceAuthCapture()
        {
            Transaction response = service.Authorize(10m)
                                   .WithCurrency("USD")
                                   .WithPaymentMethod(card)
                                   .Execute();

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