Passed
Push — master ( b2b84f...109e7c )
by Thomas Mauro
03:02
created

ModuleTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 12
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace TMV\Laminas\Messenger\Test;
6
7
use PHPUnit\Framework\TestCase;
8
use TMV\Laminas\Messenger\Module;
9
10
class ModuleTest extends TestCase
11
{
12
    public function testGetConfig(): void
13
    {
14
        $module = new Module();
15
16
        $config = $module->getConfig();
17
18
        $this->assertArrayHasKey('service_manager', $config);
19
        $this->assertArrayNotHasKey('dependencies', $config);
20
    }
21
}
22