BalancedSharp.Tests.Integration.VerificationApiTests.Create_Success C# (CSharp) Method

Create_Success() private method

private Create_Success ( ) : void
return void
        public void Create_Success()
        {
            var bankAccount = this.service.CurrentMarketplace.CreateBankAccount(new BankAccount()
            {
                Name = "myName",
                AccountNumber = "120923409",
                RoutingNumber = "029034080",
                Type = BankAccountType.Checking
            });
            var verification = bankAccount.Result.CreateVerification();
            Assert.IsNotNull(verification.Result);
            Assert.IsNotNull(verification.Result.Attempts);
            Assert.IsNotNull(verification.Result.AttemptsLeft);
            Assert.IsNotNull(verification.Result.Id);
            Assert.IsNotNull(verification.Result.State);
            Assert.IsNotNull(verification.Result.Uri);
        }