shlink/module/CLI/test/ConfigProviderTest.php

32 lines
599 B
PHP
Raw Normal View History

2016-07-28 13:49:27 -05:00
<?php
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
*/
protected $configProvider;
public function setUp()
{
$this->configProvider = new ConfigProvider();
}
/**
* @test
*/
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
}
}