コード例 #1
0
 public void TestWithdraw()
 {
     Account source = new Account();
       source.Withdraw(2.00F);
       Assert.AreEqual(-2.00F, source.Balance);
 }