MenuCompilerPassTest::testContainerKeys()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 14

Duplication

Lines 14
Ratio 100 %

Importance

Changes 0
Metric Value
dl 14
loc 14
rs 9.7998
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Kunstmaan\AdminBundle\Tests\DependencyInjection\Compiler;
4
5
use Kunstmaan\AdminBundle\DependencyInjection\Compiler\MenuCompilerPass;
6
use Matthias\SymfonyDependencyInjectionTest\PhpUnit\AbstractCompilerPassTestCase;
7
use Symfony\Component\DependencyInjection\ContainerBuilder;
8
use Symfony\Component\DependencyInjection\Definition;
9
use Symfony\Component\DependencyInjection\Reference;
10
11 View Code Duplication
class MenuCompilerPassTest extends AbstractCompilerPassTestCase
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
12
{
13
    protected function registerCompilerPass(ContainerBuilder $container): void
14
    {
15
        $container->addCompilerPass(new MenuCompilerPass());
16
    }
17
18
    public function testContainerKeys()
19
    {
20
        $svc = new Definition();
21
        $svc->addTag('kunstmaan_admin.menu.adaptor');
22
        $this->setDefinition('kunstmaan_admin.menubuilder', $svc);
23
24
        $this->compile();
25
26
        $this->assertContainerBuilderHasServiceDefinitionWithMethodCall(
27
            'kunstmaan_admin.menubuilder',
28
            'addAdaptMenu',
29
            [new Reference('kunstmaan_admin.menubuilder'), 0]
30
        );
31
    }
32
}
33