mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
Added ConfigProviderTest for EventDispatcher module
This commit is contained in:
parent
a1c7e7d5da
commit
4c76df91ce
27
module/EventDispatcher/test/ConfigProviderTest.php
Normal file
27
module/EventDispatcher/test/ConfigProviderTest.php
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<?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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user