mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 21:58:40 +03:00
33 lines
768 B
PHP
33 lines
768 B
PHP
|
<?php
|
||
|
namespace ShlinkioTest\Shlink\Core;
|
||
|
|
||
|
use PHPUnit_Framework_TestCase as TestCase;
|
||
|
use Shlinkio\Shlink\Core\ConfigProvider;
|
||
|
|
||
|
class ConfigProviderTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var ConfigProvider
|
||
|
*/
|
||
|
protected $configProvider;
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->configProvider = new ConfigProvider();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function properConfigIsReturned()
|
||
|
{
|
||
|
$config = $this->configProvider->__invoke();
|
||
|
|
||
|
$this->assertArrayHasKey('routes', $config);
|
||
|
$this->assertArrayHasKey('services', $config);
|
||
|
$this->assertArrayHasKey('templates', $config);
|
||
|
$this->assertArrayHasKey('translator', $config);
|
||
|
$this->assertArrayHasKey('zend-expressive', $config);
|
||
|
}
|
||
|
}
|