| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 37 | public function testFormatTimeCustom() |
||
| 38 | { |
||
| 39 | /** @var TimeFormatTrait $formatter */ |
||
| 40 | $formatter = $this->getMockForTrait('MVar\Apache2LogParser\TimeFormatTrait'); |
||
| 41 | $formatter->setTimeFormat('d/m/Y H:i:s'); |
||
| 42 | |||
| 43 | $this->assertEquals('05/12/2015 12:00:00', $formatter->formatTime('2015-12-05 12:00:00')); |
||
| 44 | } |
||
| 45 | } |
||
| 46 |