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