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

Get_Success() private method

private Get_Success ( ) : void
return void
        public void Get_Success()
        {
            var result = this.service.CurrentMarketplace.CreateAccount();
            var bankAccount = this.service.CurrentMarketplace.CreateBankAccount(new BankAccount()
            {
                Name = "myName",
                AccountNumber = "120923409",
                RoutingNumber = "029034080",
                Type = BankAccountType.Checking
            });
            var verification = service.Verification.Get(bankAccount.Result.VerificationUri);
            Assert.IsNotNull(verification.Result);
        }