mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-18 15:33:15 +00:00
18 lines
303 B
PHP
18 lines
303 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\TaskManager\Job;
|
|
|
|
use Alchemy\Phrasea\TaskManager\Job\FtpPullJob;
|
|
|
|
/**
|
|
* @group functional
|
|
* @group legacy
|
|
*/
|
|
class FtpPullJobTest extends JobTestCase
|
|
{
|
|
protected function getJob()
|
|
{
|
|
return new FtpPullJob($this->createTranslatorMock());
|
|
}
|
|
}
|