Exemplo n.º 1
0
        public void UpdateUsersBillingInfoTest()
        {
            BillingInfoRestCalls billingInfoRestCalls = new BillingInfoRestCalls();

            IRestResponse response = billingInfoRestCalls.UpdateUserBillingInfo(UserId, CardId, BillingInfo);

            Console.WriteLine(response.Content);

            Assert.AreNotEqual(0, response.ContentLength);
        }
Exemplo n.º 2
0
        public void GetUserBillingInfoTest()
        {
            BillingInfoRestCalls billingInfoRestCalls = new BillingInfoRestCalls();

            IRestResponse response = billingInfoRestCalls.GetUserBillingInfo(UserId);

            Console.WriteLine(response.Content);

            Assert.AreNotEqual(0, response.ContentLength);
        }