ConfigurationTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 15
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A testGetConfigTreeBuilder() 0 9 1
1
<?php
2
3
namespace Ajir\RabbitMqSqlBundle\Tests\DependencyInjection;
4
5
use \PHPUnit_Framework_TestCase as BaseTestCase;
6
use Ajir\RabbitMqSqlBundle\DependencyInjection\Configuration;
7
8
/**
9
 *
10
 */
11
class ConfigurationTest extends BaseTestCase
12
{
13
    /**
14
     * @return void
15
     */
16
    public function testGetConfigTreeBuilder()
17
    {
18
        $config = new Configuration();
19
20
        $this->assertInstanceOf(
21
            'Symfony\Component\Config\Definition\Builder\TreeBuilder',
22
            $config->getConfigTreeBuilder()
23
        );
24
    }
25
}
26