mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-19 05:33:52 -06:00
32 lines
675 B
PHP
32 lines
675 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Core\Options;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
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);
|
|
}
|
|
}
|