Completed
Push — master ( cb575d...8e212c )
by Alessandro
02:01
created

InfluxDbExtensionTest::test_load()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 7
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
declare(strict_types=1);
3
namespace Algatux\InfluxDbBundle\unit\DependencyInjection;
4
5
use Algatux\InfluxDbBundle\DependencyInjection\InfluxDbExtension;
6
use Symfony\Component\DependencyInjection\ContainerBuilder;
7
8
class InfluxDbExtensionTest extends \PHPUnit_Framework_TestCase
9
{
10
11
    public function test_load()
12
    {
13
        $extension = new InfluxDbExtension();
14
        $config = $extension->load([],new ContainerBuilder());
15
16
        $this->assertNotEmpty($config);
17
    }
18
19
}
20