ConfigurationLoaderTest::creation()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 5
rs 9.4285
c 1
b 0
f 0
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
/*
3
 * @author Tom Klingenberg <[email protected]>
4
 */
5
6
namespace N98\Magento\Application;
7
8
use N98\Magento\Command\PHPUnit\TestCase;
9
use Symfony\Component\Console\Output\NullOutput;
10
11
class ConfigurationLoaderTest extends TestCase
12
{
13
    /**
14
     * @test
15
     */
16
    public function creation()
17
    {
18
        $loader = new ConfigurationLoader([], false, new NullOutput());
19
        $this->assertInstanceOf(__NAMESPACE__ . '\\ConfigurationLoader', $loader);
20
    }
21
}
22