Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
8 | public function testConfigIsArray() |
||
9 | { |
||
10 | $module = new Module(); |
||
11 | $this->assertInternalType('array', $module->getConfig()); |
||
12 | $this->assertInternalType('array', $module->getServiceConfig()); |
||
13 | $this->assertInternalType('array', $module->getViewHelperConfig()); |
||
14 | $this->assertInternalType('array', $module->getAutoloaderConfig()); |
||
15 | } |
||
16 | } |
||
17 |