Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | final class ConfigurationFactoryTest extends TestCase |
||
20 | { |
||
21 | /** |
||
22 | * @var ServiceManager|MockObject |
||
23 | */ |
||
24 | private $serviceManager; |
||
25 | |||
26 | /** |
||
27 | * Prepare the test case dependencies |
||
28 | */ |
||
29 | public function setUp(): void |
||
30 | { |
||
31 | $this->serviceManager = $this->createMock(ServiceManager::class); |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * Assert that the ConfigurationFactory implement ConfigurationFactoryInterface |
||
36 | */ |
||
37 | public function testImplementsConfigurationInterface(): void |
||
42 | } |
||
43 | } |
||
44 |