Test Failed
Push — master ( 8413e5...65cae7 )
by Jakub
02:11
created

YamlLoaderTest::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
declare(strict_types=1);
3
4
namespace Nexendrie\Translation\Loaders;
5
6
use Nexendrie\Translation\Resolvers\ManualLocaleResolver;
7
8
require __DIR__ . "/../../../bootstrap.php";
9
10
/**
11
 * @author Jakub Konečný
12
 * @testCase
13
 */
14
final class YamlLoaderTest extends FileLoaderTestAbstract {
15
  protected function setUp() {
16
    $folders = [__DIR__ . "/../../../lang", __DIR__ . "/../../../lang2"];
17
    $this->loader = new YamlLoader(new ManualLocaleResolver(), $folders);
18
  }
19
}
20
21
$test = new YamlLoaderTest();
22
$test->run();
23
?>