BalancedSharp.Tests.Clients.BankAccountClientTests.List_Params C# (CSharp) Method

List_Params() private method

private List_Params ( ) : void
return void
        public void List_Params()
        {
            string bankAccountUri = "https://api.balancedpayments.com/v1/bank_accounts";
            int limit = 10;
            int offset = 0;
            this.service.BankAccount.List(bankAccountUri, limit: limit, offset: offset);
            Assert.AreEqual(limit.ToString(), this.rest.Parameters["limit"]);
            Assert.AreEqual(offset.ToString(), this.rest.Parameters["offset"]);
        }