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