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

i18nTest::testGetInstance()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
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