Ejemplo n.º 1
0
 /**
  * @depends testStartPriceAssesor
  * @depends testEndPriceAssesor
  */
 public function testDeltaPrice()
 {
     $expected = '10000';
     $statement = new Statement();
     $statement->setStartPrice('16250');
     $statement->setEndPrice('6250');
     $this->assertEquals($expected, $statement->getDeltaPrice());
 }