Exemplo n.º 1
0
        public void TransferMinFunds(int a, int b, int c)
        {
            Account source = new Account();

            source.Deposit(a);
            Account destination = new Account();

            destination.Deposit(b);

            source.TransferMinFunds(destination, c);
            Assert.AreEqual(c, destination.Balance);
        }