BundleTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 13
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A it_builds_bundle() 0 7 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace TomCizek\AsynchronousRouter\Tests;
6
7
use PHPUnit\Framework\TestCase;
8
use Symfony\Component\DependencyInjection\ContainerBuilder;
9
use TomCizek\AsynchronousRouter\ProophAsynchronousRouterBundle;
10
11
class BundleTest extends TestCase
12
{
13
    /**
14
     * @test
15
     */
16
    public function it_builds_bundle()
17
    {
18
        $container = new ContainerBuilder();
19
        $bundle = new ProophAsynchronousRouterBundle();
20
        $bundle->build($container);
21
        self::assertTrue(true);
22
    }
23
}
24