FormLayerBundleTest::testBundle()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 4
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 6
rs 10
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