mirror of
https://github.com/shlinkio/shlink.git
synced 2026-09-03 19:52:51 -05:00
Created Core\ConfigProviderTest
This commit is contained in:
@@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
namespace ShlinkioTest\Shlink\Core;
|
||||||
|
|
||||||
|
use PHPUnit_Framework_TestCase as TestCase;
|
||||||
|
use Shlinkio\Shlink\Core\ConfigProvider;
|
||||||
|
|
||||||
|
class ConfigProviderTest extends TestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var ConfigProvider
|
||||||
|
*/
|
||||||
|
protected $configProvider;
|
||||||
|
|
||||||
|
public function setUp()
|
||||||
|
{
|
||||||
|
$this->configProvider = new ConfigProvider();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @test
|
||||||
|
*/
|
||||||
|
public function properConfigIsReturned()
|
||||||
|
{
|
||||||
|
$config = $this->configProvider->__invoke();
|
||||||
|
|
||||||
|
$this->assertArrayHasKey('routes', $config);
|
||||||
|
$this->assertArrayHasKey('services', $config);
|
||||||
|
$this->assertArrayHasKey('templates', $config);
|
||||||
|
$this->assertArrayHasKey('translator', $config);
|
||||||
|
$this->assertArrayHasKey('zend-expressive', $config);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -20,6 +20,10 @@
|
|||||||
<directory suffix=".php">./module/Core/src</directory>
|
<directory suffix=".php">./module/Core/src</directory>
|
||||||
<directory suffix=".php">./module/Rest/src</directory>
|
<directory suffix=".php">./module/Rest/src</directory>
|
||||||
<directory suffix=".php">./module/CLI/src</directory>
|
<directory suffix=".php">./module/CLI/src</directory>
|
||||||
|
|
||||||
|
<exclude>
|
||||||
|
<directory suffix=".php">./module/Core/src/Repository</directory>
|
||||||
|
</exclude>
|
||||||
</whitelist>
|
</whitelist>
|
||||||
</filter>
|
</filter>
|
||||||
</phpunit>
|
</phpunit>
|
||||||
|
|||||||
Reference in New Issue
Block a user