BundleTest::it_builds_bundle()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 5
nc 1
nop 0
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