2016-07-30 18:17:21 +03:00
|
|
|
<?php
|
|
|
|
namespace ShlinkioTest\Shlink\Common\Factory;
|
|
|
|
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-30 18:17:21 +03:00
|
|
|
use Shlinkio\Shlink\Common\Factory\TranslatorFactory;
|
|
|
|
use Zend\I18n\Translator\Translator;
|
|
|
|
use Zend\ServiceManager\ServiceManager;
|
|
|
|
|
|
|
|
class TranslatorFactoryTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var TranslatorFactory
|
|
|
|
*/
|
|
|
|
protected $factory;
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
$this->factory = new TranslatorFactory();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function serviceIsCreated()
|
|
|
|
{
|
|
|
|
$instance = $this->factory->__invoke(new ServiceManager(['services' => [
|
|
|
|
'config' => [],
|
|
|
|
]]), '');
|
|
|
|
$this->assertInstanceOf(Translator::class, $instance);
|
|
|
|
}
|
|
|
|
}
|