Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | public function testSetSymfonyBCService(): void { |
||
32 | |||
33 | // Set a SymfonyBC service mock. |
||
34 | $symfonyBCService = $this->getMockBuilder(SymfonyBCServiceInterface::class)->getMock(); |
||
35 | |||
36 | $obj = new TestSymfonyBCServiceTrait(); |
||
37 | |||
38 | $obj->setSymfonyBCService($symfonyBCService); |
||
39 | $this->assertSame($symfonyBCService, $obj->getSymfonyBCService()); |
||
40 | } |
||
42 |