mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-17 08:32:04 +03:00
27 lines
554 B
PHP
27 lines
554 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace ShlinkioTest\Shlink\PreviewGenerator;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
use Shlinkio\Shlink\PreviewGenerator\ConfigProvider;
|
||
|
|
||
|
class ConfigProviderTest extends TestCase
|
||
|
{
|
||
|
/** @var ConfigProvider */
|
||
|
private $configProvider;
|
||
|
|
||
|
public function setUp(): void
|
||
|
{
|
||
|
$this->configProvider = new ConfigProvider();
|
||
|
}
|
||
|
|
||
|
/** @test */
|
||
|
public function configIsReturned(): void
|
||
|
{
|
||
|
$config = ($this->configProvider)();
|
||
|
|
||
|
$this->assertArrayHasKey('dependencies', $config);
|
||
|
}
|
||
|
}
|