コード例 #1
0
ファイル: IbanTest.cs プロジェクト: sinkien/IBAN4Net
 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() );
 }
コード例 #2
0
ファイル: IbanTest.cs プロジェクト: jlnovais/Tools
        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());
        }