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

testGetContainerExtension()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 6
rs 10
cc 1
nc 1
nop 0
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
}