Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
41 | public function testCorrectHandlingOfVariousStatementPricing() |
||
42 | { |
||
43 | $statements = $this->engine->parse(); |
||
44 | $this->assertEquals(1000.21, $statements[0]->getStartPrice()); |
||
45 | $this->assertEquals(945.21, $statements[0]->getEndPrice()); |
||
46 | $this->assertEquals(55, $statements[0]->getDeltaPrice()); |
||
47 | } |
||
48 | } |
||
49 |