Passed
Push — master ( 61ebc4...c33ad8 )
by Pavel
17:39
created

ConfigurationTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 1
cbo 3
dl 0
loc 12
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A testConfigurationParsing() 0 7 1
1
<?php
2
3
namespace ScayTrase\Api\Cruds\Tests;
4
5
use ScayTrase\Api\Cruds\Tests\Fixtures\TestKernel;
6
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
7
8
class ConfigurationTest extends KernelTestCase
9
{
10
    use CrudsTestCaseTrait;
11
12
    public function testConfigurationParsing()
13
    {
14
        self::bootKernel();
15
16
        $container = self::$kernel->getContainer();
17
        self::assertNotNull($container);
18
    }
19
}
20