mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-26 14:53:48 +03:00
27 lines
569 B
PHP
27 lines
569 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\CLI;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Shlinkio\Shlink\CLI\ConfigProvider;
|
|
|
|
class ConfigProviderTest extends TestCase
|
|
{
|
|
private ConfigProvider $configProvider;
|
|
|
|
public function setUp(): void
|
|
{
|
|
$this->configProvider = new ConfigProvider();
|
|
}
|
|
|
|
/** @test */
|
|
public function configIsProperlyReturned(): void
|
|
{
|
|
$config = ($this->configProvider)();
|
|
|
|
self::assertArrayHasKey('cli', $config);
|
|
self::assertArrayHasKey('dependencies', $config);
|
|
}
|
|
}
|