1 | <?php |
||
19 | class WeatherTest extends \PHPUnit_Framework_TestCase |
||
20 | { |
||
21 | /** |
||
22 | * @var Weather |
||
23 | */ |
||
24 | protected $weather; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | protected $description = 'thunderstorm with light rain'; |
||
30 | |||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | protected $iconName = '11d'; |
||
35 | |||
36 | protected function setUp() |
||
40 | |||
41 | public function test__toString() |
||
48 | |||
49 | public function testGetIconUrl() |
||
57 | } |
||
58 |