mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 17:08:58 +03:00
32 lines
715 B
PHP
32 lines
715 B
PHP
|
<?php
|
||
|
namespace ShlinkioTest\Shlink\Common;
|
||
|
|
||
|
use PHPUnit_Framework_TestCase as TestCase;
|
||
|
use Shlinkio\Shlink\Common\ConfigProvider;
|
||
|
|
||
|
class ConfigProviderTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var ConfigProvider
|
||
|
*/
|
||
|
protected $configProvider;
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->configProvider = new ConfigProvider();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function configIsReturned()
|
||
|
{
|
||
|
$config = $this->configProvider->__invoke();
|
||
|
|
||
|
$this->assertArrayHasKey('error_handler', $config);
|
||
|
$this->assertArrayHasKey('middleware_pipeline', $config);
|
||
|
$this->assertArrayHasKey('services', $config);
|
||
|
$this->assertArrayHasKey('twig', $config);
|
||
|
}
|
||
|
}
|