Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
1 | <?php declare(strict_types=1); |
||
14 | final class ArrayConfigLoaderTest extends TestCase |
||
15 | { |
||
16 | private const ARRAY_FIXTURE = [ |
||
17 | 'couchdb' => [ |
||
18 | 'host' => '127.0.0.1', |
||
19 | 'port' => 5984, |
||
20 | 'transport' => 'https', |
||
21 | 'user' => 'couchdb', |
||
22 | 'password' => 'couchdb' |
||
23 | ] |
||
24 | ]; |
||
25 | |||
26 | 1 | public function testLoad(): void |
|
32 |