shlink/module/CLI/test/ConfigProviderTest.php

28 lines
570 B
PHP
Raw Normal View History

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