Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | public function testParsesAllFoundStatements() |
||
33 | { |
||
34 | $statements = $this->engine->parse(); |
||
35 | |||
36 | $this->assertEquals(1, count($statements)); |
||
37 | $this->assertEquals('03-12-2015', $statements[0]->getStartTimestamp('d-m-Y')); |
||
38 | $this->assertEquals('03-12-2015', $statements[0]->getStartTimestamp('d-m-Y')); |
||
39 | } |
||
40 | |||
49 |