mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
53 lines
1.2 KiB
PHP
53 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
namespace Tests\Unit;
|
|
|
|
use Illuminate\Support\Facades\Lang;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
class TranslationTest extends TestCase
|
|
{
|
|
public function setUp() :void
|
|
{
|
|
parent::setUp();
|
|
}
|
|
|
|
public function testAddTranslation()
|
|
{
|
|
Lang::set('texts.test_translation_string', 'test');
|
|
|
|
$this->assertEquals('test', trans('texts.test_translation_string'));
|
|
}
|
|
|
|
public function testReplaceTranslation()
|
|
{
|
|
Lang::set('texts.invoice_number', 'test');
|
|
|
|
$this->assertEquals('test', trans('texts.invoice_number'));
|
|
}
|
|
|
|
public function testReplaceArray()
|
|
{
|
|
$data = [
|
|
'texts.invoice_number' => 'test',
|
|
'texts.custom_translation' => 'test2',
|
|
];
|
|
|
|
Lang::replace($data);
|
|
|
|
$this->assertEquals('test', trans('texts.invoice_number'));
|
|
$this->assertEquals('test2', trans('texts.custom_translation'));
|
|
}
|
|
}
|