Example #1
0
 public void IbanShouldReturnValidAccountType()
 {
     Iban iban = new IbanBuilder().CountryCode( CountryCode.GetCountryCode( "BR" ) ).BankCode( "00360305" ).BranchCode( "00001" ).AccountNumber( "0009795493" ).AccountType( "P" ).OwnerAccountType( "1" ).Build();
     Assert.AreEqual( "P", iban.GetAccountType() );
 }
Example #2
0
        public void IbanShouldReturnValidAccountType()
        {
            Iban iban = new IbanBuilder().CountryCode(CountryCode.GetCountryCode("BR")).BankCode("00360305").BranchCode("00001").AccountNumber("0009795493").AccountType("P").OwnerAccountType("1").Build();

            Assert.AreEqual("P", iban.GetAccountType());
        }