mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-18 15:33:15 +00:00
16 lines
449 B
PHP
16 lines
449 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Core\Provider;
|
|
|
|
require_once __DIR__ . '/../../../../PhraseanetPHPUnitAbstract.class.inc';
|
|
|
|
class ConfigurationServiceProvidertest extends \PhraseanetPHPUnitAbstract
|
|
{
|
|
public function testGetInstantiate()
|
|
{
|
|
self::$DI['app']->register(new ConfigurationServiceProvider());
|
|
|
|
$this->assertInstanceof('Alchemy\\Phrasea\\Core\\Configuration', self::$DI['app']['phraseanet.configuration']);
|
|
}
|
|
}
|