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

PhpLoaderTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 4
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 3 1
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
?>