Completed
Pull Request — master (#203)
by Alister
09:00
created

ConfigurationTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testGetConfigTreeBuilder() 0 8 1
1
<?php
2
3
namespace Debril\RssAtomBundle\Tests\DependencyInjection;
4
5
use Debril\RssAtomBundle\DependencyInjection\Configuration;
6
use PHPUnit\Framework\TestCase;
7
8
class ConfigurationTest extends TestCase
9
{
10
11
    public function testGetConfigTreeBuilder()
12
    {
13
        $configuration = new Configuration();
14
15
        $tree = $configuration->getConfigTreeBuilder();
16
17
        $this->assertInstanceOf('\Symfony\Component\Config\Definition\Builder\TreeBuilder', $tree);
18
    }
19
20
}
21