Exemple #1
0
 public void TestTransferLimit()
 {
     myAccount.MakeTransfer(Accounts.GetAccountNumber(counterAccount), new Money());
 }
        public void TestNoCounterAccount()
        {
            CheckingAccount unRegisteredCounterAccount = Accounts.MakeAccount <CheckingAccount>("1439");

            myAccount.MakeTransfer(Accounts.GetAccountNumber(unRegisteredCounterAccount), new Money());
        }