mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-17 00:22:10 +03:00
36 lines
958 B
PHP
36 lines
958 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Common\Template\Extension;
|
|
|
|
use League\Plates\Engine;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Prophecy\Argument;
|
|
use Shlinkio\Shlink\Common\Template\Extension\TranslatorExtension;
|
|
use Zend\I18n\Translator\Translator;
|
|
|
|
class TranslatorExtensionTest extends TestCase
|
|
{
|
|
/**
|
|
* @var TranslatorExtension
|
|
*/
|
|
protected $extension;
|
|
|
|
public function setUp()
|
|
{
|
|
$this->extension = new TranslatorExtension($this->prophesize(Translator::class)->reveal());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function properFunctionsAreReturned()
|
|
{
|
|
$engine = $this->prophesize(Engine::class);
|
|
|
|
$engine->registerFunction('translate', Argument::type('callable'))->shouldBeCalledTimes(1);
|
|
$engine->registerFunction('translate_plural', Argument::type('callable'))->shouldBeCalledTimes(1);
|
|
|
|
$funcs = $this->extension->register($engine->reveal());
|
|
}
|
|
}
|