mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-18 07:23:13 +00:00
28 lines
644 B
PHP
28 lines
644 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\TaskManager\Job;
|
|
|
|
use Alchemy\Phrasea\TaskManager\Job\WriteMetadataJob;
|
|
use Alchemy\Phrasea\TaskManager\Job\JobData;
|
|
use Alchemy\Phrasea\Model\Entities\Task;
|
|
|
|
/**
|
|
* @group functional
|
|
* @group legacy
|
|
*/
|
|
class WriteMetadataJobTest extends JobTestCase
|
|
{
|
|
protected function getJob()
|
|
{
|
|
return new WriteMetadataJob($this->createTranslatorMock());
|
|
}
|
|
|
|
public function doTestRun()
|
|
{
|
|
$job = $this->getJob();
|
|
$task = new Task();
|
|
$task->setSettings($job->getEditor()->getDefaultSettings());
|
|
$job->singleRun(new JobData(self::$DI['app'], $task));
|
|
}
|
|
}
|