예제 #1
0
        public void GiftBalanceInquiry()
        {
            var response = card.BalanceInquiry().Execute();

            Assert.IsNotNull(response);
            Assert.AreEqual("00", response.ResponseCode, response.ResponseMessage);
        }
예제 #2
0
        public void giftCard_balance_inquiry()
        {
            Transaction response = giftCard.BalanceInquiry()
                                   .Execute();

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