1 | <?php |
||
9 | class TemplateTest extends TestCase |
||
10 | { |
||
11 | /** |
||
12 | * @covers OpCacheGUI\Presentation\Template::__construct |
||
13 | */ |
||
14 | public function testConstructCorrectInterface() |
||
20 | |||
21 | /** |
||
22 | * @covers OpCacheGUI\Presentation\Template::__construct |
||
23 | * @covers OpCacheGUI\Presentation\Template::__get |
||
24 | */ |
||
25 | public function testMagicGetExists() |
||
33 | |||
34 | /** |
||
35 | * @covers OpCacheGUI\Presentation\Template::__construct |
||
36 | * @covers OpCacheGUI\Presentation\Template::__get |
||
37 | */ |
||
38 | public function testMagicGetDoesNotExist() |
||
44 | |||
45 | /** |
||
46 | * @covers OpCacheGUI\Presentation\Template::__construct |
||
47 | * @covers OpCacheGUI\Presentation\Template::__isset |
||
48 | */ |
||
49 | public function testMagicIssetExists() |
||
57 | |||
58 | /** |
||
59 | * @covers OpCacheGUI\Presentation\Template::__construct |
||
60 | * @covers OpCacheGUI\Presentation\Template::__isset |
||
61 | */ |
||
62 | public function testMagicIssetDoesNotExist() |
||
68 | } |
||
69 |