BalancedSharp.Tests.Clients.BankAccountClientTests.Create_Params C# (CSharp) Метод

Create_Params() приватный Метод

private Create_Params ( ) : void
Результат void
        public void Create_Params()
        {
            string bankAccountUri = "https://api.balancedpayments.com/v1/bank_accounts/BA6ThbEt9vlVXtNB1K4C9VUs";
            string name = "Johann Bernoulli";
            string accountNumber = "9900000001";
            string routingNumber = "121000358";
            BankAccountType type = BankAccountType.Checking;

            this.service.BankAccount.Create(bankAccountUri, name, accountNumber, routingNumber, type);
            Assert.AreEqual(name, this.rest.Parameters["name"]);
            Assert.AreEqual(accountNumber, this.rest.Parameters["account_number"]);
            Assert.AreEqual(routingNumber, this.rest.Parameters["routing_number"]);
            Assert.AreEqual(type, this.rest.Parameters["type"]);
        }