shlink/module/CLI/test/ConfigProviderTest.php

29 lines
580 B
PHP
Raw Normal View History

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