FormLayerBundleTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 5
c 1
b 0
f 0
dl 0
loc 8
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testBundle() 0 6 1
1
<?php
2
3
4
namespace Pfilsx\FormLayer\Tests;
5
6
7
use Pfilsx\FormLayer\FormLayerBundle;
8
use PHPUnit\Framework\TestCase;
9
use Symfony\Component\DependencyInjection\ContainerBuilder;
10
11
class FormLayerBundleTest extends TestCase
12
{
13
    public function testBundle()
14
    {
15
        $bundle = new FormLayerBundle();
16
        $container = new ContainerBuilder();
17
        $bundle->build($container);
18
        $this->assertEquals('FormLayerBundle', $bundle->getName());
19
    }
20
}
21