shlink/module/CLI/test/ConfigProviderTest.php

33 lines
664 B
PHP
Raw Normal View History

2016-07-28 21:49:27 +03:00
<?php
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
{
/**
* @var ConfigProvider
*/
protected $configProvider;
public function setUp()
{
$this->configProvider = new ConfigProvider();
}
/**
* @test
*/
public function confiIsProperlyReturned()
{
$config = $this->configProvider->__invoke();
$this->assertArrayHasKey('cli', $config);
$this->assertArrayHasKey('dependencies', $config);
2016-07-28 21:49:27 +03:00
$this->assertArrayHasKey('translator', $config);
}
}