Ejemplo n.º 1
0
 /**
  * @expectedException \PhpDeal\Exception\ContractViolation
  */
 public function testInvariantViolatedAfterSeveralMethods()
 {
     $this->stub->accelerate(10, 30);
     // let's have a speed 300m/s
     $this->stub->decelerate(20, 20);
     // Negative speed?
 }