mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
14 lines
299 B
PHP
14 lines
299 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\TaskManager\Job;
|
|
|
|
use Alchemy\Phrasea\TaskManager\Job\PhraseanetIndexerJob;
|
|
|
|
class PhraseanetIndexerJobTest extends JobTestCase
|
|
{
|
|
protected function getJob()
|
|
{
|
|
return new PhraseanetIndexerJob(null, null, $this->createTranslatorMock());
|
|
}
|
|
}
|