Passed
Push — main ( 804454...961a3c )
by Mariano
05:19
created

HolaAmpToolboxBundleTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 4
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A testGetContainerExtension() 0 6 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Hola\AmpToolboxBundle\Tests\Unit;
6
7
use Hola\AmpToolboxBundle\DependencyInjection\AmpToolboxExtension;
8
use Hola\AmpToolboxBundle\HolaAmpToolboxBundle;
9
use PHPUnit\Framework\TestCase;
10
11
class HolaAmpToolboxBundleTest extends TestCase
12
{
13
    public function testGetContainerExtension()
14
    {
15
        $instance = new HolaAmpToolboxBundle();
16
        $extension = $instance->getContainerExtension();
17
18
        $this->assertInstanceOf(AmpToolboxExtension::class, $extension);
19
    }
20
}