1 | <?php |
||
8 | class ByteTest extends TestCase |
||
9 | { |
||
10 | /** |
||
11 | * @covers OpCacheGUI\Format\Byte::format |
||
12 | */ |
||
13 | public function testFormatWithBytes() |
||
19 | |||
20 | /** |
||
21 | * @covers OpCacheGUI\Format\Byte::format |
||
22 | */ |
||
23 | public function testFormatWithKiloBytes() |
||
29 | |||
30 | /** |
||
31 | * @covers OpCacheGUI\Format\Byte::format |
||
32 | */ |
||
33 | public function testFormatWithMegaBytes() |
||
39 | |||
40 | /** |
||
41 | * @covers OpCacheGUI\Format\Byte::format |
||
42 | */ |
||
43 | public function testFormatWithGigaBytes() |
||
49 | |||
50 | /** |
||
51 | * @covers OpCacheGUI\Format\Byte::format |
||
52 | */ |
||
53 | public function testFormatWithMoteThanGigaBytes() |
||
59 | |||
60 | /** |
||
61 | * @covers OpCacheGUI\Format\Byte::format |
||
62 | */ |
||
63 | public function testFormatWithKiloBytesAndNoDecimals() |
||
69 | |||
70 | /** |
||
71 | * @covers OpCacheGUI\Format\Byte::format |
||
72 | */ |
||
73 | public function testFormatWithKiloBytesAndOneDecimals() |
||
79 | |||
80 | /** |
||
81 | * @covers OpCacheGUI\Format\Byte::format |
||
82 | */ |
||
83 | public function testFormatWithKiloBytesAndFourDecimals() |
||
89 | } |
||
90 |