shlink/module/CLI/test/ConfigProviderTest.php

32 lines
783 B
PHP
Raw Normal View History

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;
2020-11-22 20:11:31 +03:00
use Laminas\ServiceManager\AbstractFactory\ConfigAbstractFactory;
use PHPUnit\Framework\Attributes\Test;
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
{
2019-12-30 00:27:00 +03:00
private ConfigProvider $configProvider;
2016-07-28 21:49:27 +03:00
protected function setUp(): void
2016-07-28 21:49:27 +03:00
{
$this->configProvider = new ConfigProvider();
}
#[Test]
2020-10-04 01:35:29 +03:00
public function configIsProperlyReturned(): void
2016-07-28 21:49:27 +03:00
{
2018-11-18 18:02:52 +03:00
$config = ($this->configProvider)();
2016-07-28 21:49:27 +03:00
2020-11-22 20:11:31 +03:00
self::assertCount(3, $config);
2020-10-04 01:35:14 +03:00
self::assertArrayHasKey('cli', $config);
self::assertArrayHasKey('dependencies', $config);
2020-11-22 20:11:31 +03:00
self::assertArrayHasKey(ConfigAbstractFactory::class, $config);
2016-07-28 21:49:27 +03:00
}
}