Completed
Push — master ( ea4e5e...1a7580 )
by Zbigniew
02:25
created

YamlZibiosWrikeExtensionTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 3
dl 0
loc 12
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * This file is part of the WrikeBundle package.
4
 *
5
 * (c) Zbigniew Ślązak
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Zibios\Bundle\WrikeBundle\Tests\DependencyInjection\Fixtures;
12
13
use Symfony\Component\Config\FileLocator;
14
use Symfony\Component\DependencyInjection\ContainerBuilder;
15
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
16
17
/**
18
 * YamlZibiosWrikeExtensionTest
19
 */
20
class YamlZibiosWrikeExtensionTest extends FixtureZibiosWrikeExtensionTestCase
21
{
22
    /**
23
     * @param ContainerBuilder $container
24
     * @param string $fixture
25
     */
26
    protected function loadFixture(ContainerBuilder $container, $fixture)
27
    {
28
        $loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/yml'));
29
        $loader->load($fixture.'.yml');
30
    }
31
}
32