shlink/module/EventDispatcher/test/ConfigProviderTest.php
2019-07-20 12:16:31 +02:00

28 lines
613 B
PHP

<?php
declare(strict_types=1);
namespace ShlinkioTest\Shlink\EventDispatcher;
use PHPUnit\Framework\TestCase;
use Shlinkio\Shlink\EventDispatcher\ConfigProvider;
class ConfigProviderTest extends TestCase
{
/** @var ConfigProvider */
private $configProvider;
public function setUp(): void
{
$this->configProvider = new ConfigProvider();
}
/** @test */
public function configIsReturned(): void
{
$config = $this->configProvider->__invoke();
$this->assertArrayHasKey('dependencies', $config);
$this->assertArrayHasKey('events', $config);
}
}