mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 13:33:14 +00:00
23 lines
622 B
PHP
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']));
|
|
}
|
|
} |