Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | public function testAutoloaderConfig() |
||
32 | { |
||
33 | $expectedConfig = [ |
||
34 | StandardAutoloader::class => [ |
||
35 | 'namespaces' => [ |
||
36 | 'ZendSentry' => realpath(__DIR__. '/../../src/ZendSentry') |
||
37 | ] |
||
38 | ] |
||
39 | ]; |
||
40 | |||
41 | $actualConfig = $this->module->getAutoloaderConfig(); |
||
42 | |||
43 | $this->assertEquals($expectedConfig, $actualConfig); |
||
44 | } |
||
45 | } |
||
46 |