Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
45 | public function test__construct(): void { |
||
46 | |||
47 | $this->assertEquals("wbw.core.service.compatibility", SymfonyBCService::SERVICE_NAME); |
||
48 | |||
49 | $obj = new SymfonyBCService($this->containerBuilder); |
||
50 | |||
51 | $this->assertInstanceOf(SymfonyBCServiceInterface::class, $obj); |
||
52 | |||
53 | $this->assertSame($this->containerBuilder, $obj->getContainer()); |
||
54 | } |
||
56 |