Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function testCreate() |
||
24 | { |
||
25 | $appKernel = $this->createMock(AppKernelInterface::class); |
||
26 | $cfg = $this->createMock(DTOPluginConfigurationInterface::class); |
||
27 | |||
28 | $factory = new FileLocatorFactory( |
||
29 | $appKernel, |
||
30 | $cfg, |
||
31 | ); |
||
32 | |||
33 | $this->assertNotNull($factory->create()); |
||
34 | } |
||
36 |