Completed
Push — wip-platform ( 442c75...159b0f )
by
unknown
02:42
created

BlastCoreBundleTest::testServicesAreInitializable()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
/*
4
 * Copyright (C) 2015-2017 Libre Informatique
5
 *
6
 * This file is licenced under the GNU LGPL v3.
7
 * For the full copyright and license information, please view the LICENSE.md
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Blast\Bundle\CoreBundle\Tests\Functional;
12
13
use Blast\Bundle\TestsBundle\Functional\BlastTestCase;
14
15
class BlastCoreBundleTest extends BlastTestCase
16
{
17
    public function testServicesAreInitializable()
18
    {
19
        $this->isServicesAreInitializable('blast');
20
21
        $this->isServicesAreInitializable('sil');
22
    }
23
}
24