mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 17:08:58 +03:00
31 lines
710 B
PHP
31 lines
710 B
PHP
<?php
|
|
namespace ShlinkioTest\Shlink\Common\Factory;
|
|
|
|
use PHPUnit_Framework_TestCase as TestCase;
|
|
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);
|
|
}
|
|
}
|