mirror of
https://github.com/shlinkio/shlink.git
synced 2025-03-14 04:00:57 +03:00
Created Core\ConfigProviderTest
This commit is contained in:
parent
9c6420fe26
commit
8c446f0f3b
2 changed files with 36 additions and 0 deletions
32
module/Core/test/ConfigProviderTest.php
Normal file
32
module/Core/test/ConfigProviderTest.php
Normal 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);
|
||||
}
|
||||
}
|
|
@ -20,6 +20,10 @@
|
|||
<directory suffix=".php">./module/Core/src</directory>
|
||||
<directory suffix=".php">./module/Rest/src</directory>
|
||||
<directory suffix=".php">./module/CLI/src</directory>
|
||||
|
||||
<exclude>
|
||||
<directory suffix=".php">./module/Core/src/Repository</directory>
|
||||
</exclude>
|
||||
</whitelist>
|
||||
</filter>
|
||||
</phpunit>
|
||||
|
|
Loading…
Add table
Reference in a new issue