1 | <?php |
||
10 | final class UnitTest extends TestCase |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * @covers ::__construct |
||
15 | */ |
||
16 | public function testUnitCreation() |
||
20 | |||
21 | /** |
||
22 | * @covers ::getValue |
||
23 | */ |
||
24 | public function testGetValue() |
||
29 | |||
30 | /** |
||
31 | * @covers ::getUnit |
||
32 | */ |
||
33 | public function testgetUnit() |
||
38 | |||
39 | /** |
||
40 | * @covers ::getUnit |
||
41 | */ |
||
42 | public function testgetUnitFahrenheit() |
||
47 | |||
48 | /** |
||
49 | * @covers ::getUnit |
||
50 | */ |
||
51 | public function testgetUnitCelsius() |
||
56 | |||
57 | /** |
||
58 | * @covers ::getDescription |
||
59 | */ |
||
60 | public function testGetDecription() |
||
65 | |||
66 | /** |
||
67 | * @covers ::getFormatted |
||
68 | */ |
||
69 | public function getFormatted() |
||
74 | |||
75 | /** |
||
76 | * @covers ::__toString |
||
77 | */ |
||
78 | public function testToString() |
||
83 | |||
84 | } |
||
85 |