Ejemplo n.º 1
0
        public void Test_016_MasterCard_Verfiy()
        {
            Transaction response = MasterCardManual.Verify()
                                   .WithAddress(Address)
                                   .Execute();

            Assert.IsNotNull(response);
            Assert.AreEqual("00", response.ResponseCode);
        }
Ejemplo n.º 2
0
        public void Test_016_MasterCard_Verfiy()
        {
            Logger.AppendText("\r\nTest_016_MasterCard_Verfiy");

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