Completed
Push — wip-platform ( b4fe12...9d73fe )
by
unknown
18:25
created

BlastCoreBundleTest::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 3

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 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