2016-07-28 21:49:27 +03:00
|
|
|
<?php
|
2019-10-05 18:26:10 +03:00
|
|
|
|
2017-10-12 11:13:20 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-07-28 21:49:27 +03:00
|
|
|
namespace ShlinkioTest\Shlink\CLI;
|
|
|
|
|
2017-03-24 22:34:18 +03:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-07-28 21:49:27 +03:00
|
|
|
use Shlinkio\Shlink\CLI\ConfigProvider;
|
|
|
|
|
|
|
|
class ConfigProviderTest extends TestCase
|
|
|
|
{
|
2018-11-20 21:30:27 +03:00
|
|
|
/** @var ConfigProvider */
|
2018-11-20 21:37:22 +03:00
|
|
|
private $configProvider;
|
2016-07-28 21:49:27 +03:00
|
|
|
|
2019-02-16 12:53:45 +03:00
|
|
|
public function setUp(): void
|
2016-07-28 21:49:27 +03:00
|
|
|
{
|
|
|
|
$this->configProvider = new ConfigProvider();
|
|
|
|
}
|
|
|
|
|
2019-02-17 22:28:34 +03:00
|
|
|
/** @test */
|
2016-07-28 21:49:27 +03:00
|
|
|
public function confiIsProperlyReturned()
|
|
|
|
{
|
2018-11-18 18:02:52 +03:00
|
|
|
$config = ($this->configProvider)();
|
2016-07-28 21:49:27 +03:00
|
|
|
|
|
|
|
$this->assertArrayHasKey('cli', $config);
|
2016-07-31 17:30:05 +03:00
|
|
|
$this->assertArrayHasKey('dependencies', $config);
|
2016-07-28 21:49:27 +03:00
|
|
|
}
|
|
|
|
}
|