mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-15 23:52:07 +03:00
32 lines
710 B
PHP
32 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);
|
||
|
}
|
||
|
}
|