Files
Phraseanet/tests/Alchemy/Tests/Phrasea/SearchEngine/PhraseaConfigurationPanelTest.php
2013-01-18 17:47:25 +01:00

23 lines
622 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']));
}
}