ResponseAlterTest::testSomething()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
c 1
b 0
f 0
dl 0
loc 9
ccs 0
cts 5
cp 0
rs 10
cc 1
nc 1
nop 0
crap 2
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