mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 21:58:40 +03:00
33 lines
728 B
PHP
33 lines
728 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Rest;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Shlinkio\Shlink\Rest\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('error_handler', $config);
|
|
$this->assertArrayHasKey('routes', $config);
|
|
$this->assertArrayHasKey('dependencies', $config);
|
|
$this->assertArrayHasKey('translator', $config);
|
|
}
|
|
}
|