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