mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 13:49:03 +03:00
34 lines
786 B
PHP
34 lines
786 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Core;
|
|
|
|
use PHPUnit\Framework\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('dependencies', $config);
|
|
$this->assertArrayHasKey('templates', $config);
|
|
$this->assertArrayHasKey('translator', $config);
|
|
$this->assertArrayHasKey('zend-expressive', $config);
|
|
}
|
|
}
|