Total Complexity | 6 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class APCTest extends \PHPUnit\Framework\TestCase |
||
13 | { |
||
14 | private $object; |
||
15 | |||
16 | |||
17 | protected function setUp() : void |
||
18 | { |
||
19 | $trans = new \Aimeos\Base\Translation\None( 'en_GB' ); |
||
20 | $this->object = new \Aimeos\Base\Translation\Decorator\APC( $trans, 'i18n' ); |
||
21 | } |
||
22 | |||
23 | |||
24 | protected function tearDown() : void |
||
27 | } |
||
28 | |||
29 | |||
30 | public function testAll() |
||
31 | { |
||
32 | $this->assertEquals( [], $this->object->all( 'domain' ) ); |
||
33 | } |
||
34 | |||
35 | |||
36 | public function testDt() |
||
39 | } |
||
40 | |||
41 | |||
42 | public function testDn() |
||
45 | } |
||
46 | |||
47 | |||
48 | public function testGetLocale() |
||
53 |