mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-06 23:33:13 +08:00
Created specific factory for AppOptions to prevent circular dependency with cache
This commit is contained in:
29
module/Core/test/Options/AppOptionsFactoryTest.php
Normal file
29
module/Core/test/Options/AppOptionsFactoryTest.php
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
namespace ShlinkioTest\Shlink\Core\Options;
|
||||
|
||||
use PHPUnit_Framework_TestCase as 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user