Passed
Push — master ( 0aa43e...eaba1f )
by Jean Paul
06:20
created

i18nTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 6
c 1
b 0
f 0
dl 0
loc 14
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A testGetInstance() 0 3 1
A testGetText() 0 7 1
1
<?php
2
3
namespace Coco\SourceWatcher\Tests\Utils;
4
5
use Coco\SourceWatcher\Utils\i18n;
6
use PHPUnit\Framework\TestCase;
7
8
class i18nTest extends TestCase
9
{
10
    public function testGetInstance () : void
11
    {
12
        $this->assertEquals( i18n::getInstance(), i18n::getInstance() );
13
    }
14
15
    public function testGetText () : void
16
    {
17
        $expectedString = "This is a test entry!";
18
        $actualString = i18n::getInstance()->getText( "en_US", i18nTest::class, "This_Is_A_Test_Entry" );
19
20
        $this->assertNotNull( $actualString );
21
        $this->assertEquals( $expectedString, $actualString );
22
    }
23
}
24