ConfigurationTest::testOnKernelController()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
1
<?php
2
namespace SandboxBundle\Tests\DependencyInjection;
3
4
use danrevah\SandboxBundle\DependencyInjection\Configuration;
5
use danrevah\SandboxBundle\EventListener\SandboxListener;
6
use ShortifyPunit\ShortifyPunit;
7
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
8
9
class ConfigurationTest extends WebTestCase
10
{
11
    // Test for code coverage, validate if there's no exceptions
12
    public function testOnKernelController()
13
    {
14
        $configuration = new Configuration();
15
        $configuration->getConfigTreeBuilder();
16
    }
17
}