コード例 #1
0
        public void Create_CreatesCommandUsingWithdrawalFromPaymentCreatedByPaymentFactory()
        {
            Factory.Create(Player, Amount);

            MockPayment.Verify(p => p.Withdrawal);
        }
コード例 #2
0
        public void Create_CreatesCommandUsingDepositFromPaymentCreatedByPaymentFactory()
        {
            Factory.Create(Player, Amount);

            MockPayment.Verify(p => p.Deposit);
        }