mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
22 lines
410 B
PHP
22 lines
410 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\Setup\Probe;
|
|
|
|
/**
|
|
* @group functional
|
|
* @group legacy
|
|
*/
|
|
class SearchEngineProbeTest extends ProbeTestCase
|
|
{
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
self::$DI['app']['phraseanet.SE'] = $this->createSearchEngineMock();
|
|
}
|
|
|
|
protected function getClassName()
|
|
{
|
|
return 'Alchemy\Phrasea\Setup\Probe\SearchEngineProbe';
|
|
}
|
|
}
|