Ejemplo n.º 1
0
 public void TestMultiplication()
 {
     Dollar five = new Dollar(5);
     five.Times(2);
     Assert.AreEqual(10, five.Amount);
 }