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

ConfigurationTest::testConfigurationParsing()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

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