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