mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 13:33:14 +00:00
24 lines
551 B
PHP
24 lines
551 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\TaskManager\Job;
|
|
|
|
use Alchemy\Phrasea\TaskManager\Job\SubdefsJob;
|
|
use Alchemy\Phrasea\TaskManager\Job\JobData;
|
|
use Alchemy\Phrasea\Model\Entities\Task;
|
|
|
|
class SubdefsJobTest extends JobTestCase
|
|
{
|
|
protected function getJob()
|
|
{
|
|
return new SubdefsJob();
|
|
}
|
|
|
|
public function doTestRun()
|
|
{
|
|
$job = $this->getJob();
|
|
$task = new Task();
|
|
$task->setSettings($job->getEditor()->getDefaultSettings());
|
|
$job->singleRun(new JobData(self::$DI['app'], $task));
|
|
}
|
|
}
|