[TEST] Fix translation test
This commit is contained in:
parent
f5a6e2f047
commit
2d70f484f2
@ -19,14 +19,11 @@
|
|||||||
|
|
||||||
namespace App\Tests\Core\I18n;
|
namespace App\Tests\Core\I18n;
|
||||||
|
|
||||||
// require_once '/home/hugo/software/social/config/bootstrap.php';
|
require_once __DIR__ . '/../../../config/bootstrap.php';
|
||||||
// require_once '/home/hugo/software/social/src/Core/I18n/I18n.php';
|
|
||||||
|
|
||||||
use function App\Core\I18n\_m;
|
use function App\Core\I18n\_m;
|
||||||
use App\Core\I18n\I18n;
|
use App\Core\I18n\I18n;
|
||||||
use App\Core\I18n\I18nHelper;
|
|
||||||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||||||
use Symfony\Contracts\Translation\TranslatorInterface;
|
|
||||||
|
|
||||||
// use Jchook\AssertThrows\AssertThrows;
|
// use Jchook\AssertThrows\AssertThrows;
|
||||||
|
|
||||||
@ -37,8 +34,8 @@ class I18nTest extends WebTestCase
|
|||||||
public function testM()
|
public function testM()
|
||||||
{
|
{
|
||||||
static::bootKernel();
|
static::bootKernel();
|
||||||
$translator = static::$container->get(TranslatorInterface::class);
|
$translator = static::$container->get('translator');
|
||||||
I18nHelper::setTranslator($translator);
|
I18n::setTranslator($translator);
|
||||||
|
|
||||||
static::assertSame('test string', _m('test string'));
|
static::assertSame('test string', _m('test string'));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user