ConfigurationTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A testOnKernelController() 0 5 1
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
}