示例#1
0
        public void Withdraw_cannot_exceed_1000()
        {
            var account = new TestAccount(testOwner, testBalance);

            Assert.Throws <ArgumentException>(() => account.Withdraw(oneThousand));
        }