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