2016-08-15 23:40:49 +02:00
|
|
|
<?php
|
|
|
|
|
namespace ShlinkioTest\Shlink\Core\Options;
|
|
|
|
|
|
2017-03-24 20:34:18 +01:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-08-15 23:40:49 +02:00
|
|
|
use Shlinkio\Shlink\Core\Options\AppOptions;
|
|
|
|
|
use Shlinkio\Shlink\Core\Options\AppOptionsFactory;
|
|
|
|
|
use Zend\ServiceManager\ServiceManager;
|
|
|
|
|
|
|
|
|
|
class AppOptionsFactoryTest extends TestCase
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* @var AppOptionsFactory
|
|
|
|
|
*/
|
|
|
|
|
protected $factory;
|
|
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
|
{
|
|
|
|
|
$this->factory = new AppOptionsFactory();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @test
|
|
|
|
|
*/
|
|
|
|
|
public function serviceIsCreated()
|
|
|
|
|
{
|
|
|
|
|
$instance = $this->factory->__invoke(new ServiceManager([]), '');
|
|
|
|
|
$this->assertInstanceOf(AppOptions::class, $instance);
|
|
|
|
|
}
|
|
|
|
|
}
|