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

PhpLoaderTest::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
/**
12
 * @author Jakub Konečný
13
 * @testCase
14
 */
15
final class PhpLoaderTest extends FileLoaderTestAbstract {
16
  protected function setUp() {
17
    $folders = [__DIR__ . "/../../../lang", __DIR__ . "/../../../lang2"];
18
    $this->loader = new PhpLoader(new ManualLocaleResolver(), $folders);
19
  }
20
}
21
22
$test = new PhpLoaderTest();
23
$test->run();
24
?>