Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | * Test for formatTime() in case no format was set. |
||
11 | */ |
||
12 | public function testFormatTimeNoFormatting() |
||
13 | { |
||
14 | /** @var TimeFormatTrait $formatter */ |
||
15 | $formatter = $this->getMockForTrait('MVar\Apache2LogParser\TimeFormatTrait'); |
||
16 | |||
17 | $this->assertEquals('no formatting', $formatter->formatTime('no formatting')); |
||
46 |