Files
Phraseanet/tests/Alchemy/Tests/Phrasea/TaskManager/Job/NullJobTest.php
2015-06-15 19:30:51 +02:00

18 lines
294 B
PHP

<?php
namespace Alchemy\Tests\Phrasea\TaskManager\Job;
use Alchemy\Phrasea\TaskManager\Job\NullJob;
/**
* @group functional
* @group legacy
*/
class NullJobTest extends JobTestCase
{
protected function getJob()
{
return new NullJob($this->createTranslatorMock());
}
}