Files
Phraseanet/tests/Alchemy/Tests/Phrasea/SearchEngine/PhraseaConfigurationPanelTest.php
Romain Neutron 278eb3c2dc Fix CS
2013-05-29 21:23:36 +02:00

24 lines
623 B
PHP

<?php
namespace Alchemy\Tests\Phrasea\SearchEngine;
use Alchemy\Phrasea\SearchEngine\Phrasea\PhraseaEngine;
use Alchemy\Phrasea\SearchEngine\Phrasea\ConfigurationPanel;
use Alchemy\Tests\Phrasea\SearchEngine\ConfigurationPanelAbstractTest;
class PhraseaConfigurationPanelTest extends ConfigurationPanelAbstractTest
{
/**
* @covers Alchemy\Phrasea\SearchEngine\Phrasea\ConfigurationPanel
*/
public static function setUpBeforeClass()
{
parent::setUpBeforeClass();
}
public function getPanel()
{
return new ConfigurationPanel(new PhraseaEngine(self::$DI['app']));
}
}