2020-08-11 02:48:05 +02:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-09-14 13:11:46 +02:00
|
|
|
*
|
2022-06-21 11:57:17 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-09-14 13:11:46 +02:00
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2020-08-11 02:48:05 +02:00
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Lang;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
2024-09-16 13:13:55 +02:00
|
|
|
*
|
2020-08-11 02:48:05 +02:00
|
|
|
*/
|
|
|
|
class TranslationTest extends TestCase
|
|
|
|
{
|
2024-08-22 08:57:52 +02:00
|
|
|
protected function setUp(): void
|
2020-08-11 02:48:05 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAddTranslation()
|
|
|
|
{
|
|
|
|
Lang::set('texts.test_translation_string', 'test');
|
|
|
|
|
|
|
|
$this->assertEquals('test', trans('texts.test_translation_string'));
|
|
|
|
}
|
|
|
|
|
2020-08-11 03:03:49 +02:00
|
|
|
public function testReplaceTranslation()
|
|
|
|
{
|
|
|
|
Lang::set('texts.invoice_number', 'test');
|
|
|
|
|
|
|
|
$this->assertEquals('test', trans('texts.invoice_number'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testReplaceArray()
|
|
|
|
{
|
|
|
|
$data = [
|
|
|
|
'texts.invoice_number' => 'test',
|
2020-09-06 11:38:10 +02:00
|
|
|
'texts.custom_translation' => 'test2',
|
2020-08-11 03:03:49 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
Lang::replace($data);
|
|
|
|
|
|
|
|
$this->assertEquals('test', trans('texts.invoice_number'));
|
|
|
|
$this->assertEquals('test2', trans('texts.custom_translation'));
|
|
|
|
}
|
2020-08-11 02:48:05 +02:00
|
|
|
}
|