ConfigurationTest::testGetConfigTreeBuilder()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 5

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 9
rs 9.6666
cc 1
eloc 5
nc 1
nop 0
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