Passed
Push — main ( 9e80a2...f7e638 )
by Mariano
03:25
created

HolaAmpToolboxBundleTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

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

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;
6
7
use Hola\AmpToolboxBundle\DependencyInjection\AmpToolboxExtension;
8
use PHPUnit\Framework\TestCase;
9
10
class HolaAmpToolboxBundleTest extends TestCase
11
{
12
    public function testGetContainerExtension()
13
    {
14
        $instance = new HolaAmpToolboxBundle();
15
        $extension = $instance->getContainerExtension();
16
17
        $this->assertInstanceOf(AmpToolboxExtension::class, $extension);
18
    }
19
}