Created Core\ConfigProviderTest

This commit is contained in:
Alejandro Celaya 2016-07-30 23:07:44 +02:00
parent 9c6420fe26
commit 8c446f0f3b
2 changed files with 36 additions and 0 deletions

View file

@ -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);
}
}

View file

@ -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>