mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 09:03:07 +03:00
31 lines
609 B
PHP
31 lines
609 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Common;
|
|
|
|
use PHPUnit\Framework\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('dependencies', $config);
|
|
$this->assertArrayHasKey('plates', $config);
|
|
}
|
|
}
|