| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 21 | } |
||
| 22 | |||
| 23 | public function testGetReadableMemory() |
||
| 24 | { |
||
| 25 | $test_input = array( |
||
| 26 | '314' => '314 b', |
||
| 27 | '7403' => '7.23 k', |
||
| 28 | '2589983' => '2.47 M' |
||
| 29 | ); |
||
| 30 | |||
| 31 | foreach ($test_input as $input => $expected_return) { |
||
| 32 | $this->assertEquals($expected_return, Display::getReadableMemory($input)); |
||
| 33 | } |
||
| 36 |