ResponseAlterTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 5
c 1
b 0
f 0
dl 0
loc 11
ccs 0
cts 5
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A testSomething() 0 9 1
1
<?php
2
3
/**
4
 * For the full copyright and license information, please view
5
 * the LICENSE file that was distributed with this source code.
6
 */
7
8
declare(strict_types=1);
9
10
namespace loophp\GoUnflocYourselfBundle\Tests\Integration\Service;
11
12
use loophp\GoUnflocYourselfBundle\Service\ResponseHeadersAlter;
13
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
14
15
/**
16
 * @internal
17
 * @coversNothing
18
 */
19
final class ResponseAlterTest extends KernelTestCase
20
{
21
    public function testSomething()
22
    {
23
        self::bootKernel();
24
25
        $container = self::$container;
26
27
        $service = $container->get(ResponseHeadersAlter::class);
28
29
        self::assertInstanceOf(ResponseHeadersAlter::class, $service);
30
    }
31
}
32