Ejemplo n.º 1
0
 public function testPodeSubtrair()
 {
     $a = new Money(1);
     $a->subtrair(1);
     $this->assertEquals(0, $a->getTotal());
 }