mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-24 13:49:03 +03:00
27 lines
564 B
PHP
27 lines
564 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 confiIsProperlyReturned()
|
|
{
|
|
$config = ($this->configProvider)();
|
|
|
|
$this->assertArrayHasKey('cli', $config);
|
|
$this->assertArrayHasKey('dependencies', $config);
|
|
}
|
|
}
|