Example #1
0
        public void giftCard_cash_out()
        {
            Transaction response = giftCard.CashOut()
                                   .WithClerkId("41256")
                                   .Execute();

            Assert.IsNotNull(response);
            System.Diagnostics.Debug.WriteLine(response.HostResponseDate);
            System.Diagnostics.Debug.WriteLine(response.SystemTraceAuditNumber);
            Assert.AreEqual("000", response.ResponseCode);
        }