Beispiel #1
0
        public void Test_015_Visa_Verfiy()
        {
            Transaction response = VisaManual.Verify()
                                   .WithAddress(Address)
                                   .Execute();

            Assert.IsNotNull(response);
            Assert.AreEqual("00", response.ResponseCode);
        }
Beispiel #2
0
        public void Test_015_Visa_Verfiy()
        {
            Logger.AppendText("\r\nTest_015_Visa_Verfiy");

            Response = VisaManual.Verify()
                       .WithAddress(Address)
                       .WithClientTransactionId(ClientTransactionId)
                       .Execute();
        }