1 | <?php |
||
15 | class TestInfoWindowModel extends TestCase { |
||
16 | |||
17 | /** |
||
18 | * @var Info_Window_Model |
||
19 | */ |
||
20 | private $_model; |
||
21 | |||
22 | public function setUp() { |
||
27 | |||
28 | /** |
||
29 | * @covers ::__construct |
||
30 | * @covers ::__call |
||
31 | */ |
||
32 | public function testInfoWindowIsSet() { |
||
35 | |||
36 | /** |
||
37 | * @covers ::has_info_window |
||
38 | */ |
||
39 | public function testHasInfoWindow() { |
||
42 | |||
43 | /** |
||
44 | * @covers ::__call |
||
45 | */ |
||
46 | public function testMagicMethods() { |
||
52 | |||
53 | /** |
||
54 | * @covers ::__call |
||
55 | */ |
||
56 | public function testMagicMethodNull() { |
||
61 | |||
62 | /** |
||
63 | * @return \Mockery\MockInterface |
||
64 | */ |
||
65 | private function _get_mock_info_window() { |
||
74 | } |
||
75 |