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

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();
});
}
}