| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 8 | { |
||
| 9 | |||
| 10 | public function testGetReadableTime() |
||
| 11 | { |
||
| 12 | $test_input = array( |
||
| 13 | '.032432' => '32.432 ms', |
||
| 14 | '24.3781' => '24.378 s', |
||
| 15 | '145.123' => '2.419 m' |
||
| 16 | ); |
||
| 17 | |||
| 18 | foreach ($test_input as $input => $expected_return) { |
||
| 19 | $this->assertEquals($expected_return, Display::getReadableTime($input)); |
||
| 20 | } |
||
| 36 |