Files
Phraseanet/tests/Alchemy/Tests/Phrasea/TaskManager/Job/NullJobTest.php
Benoît Burnichon beabf90fdf Refactor Notifier
2015-05-12 21:05:29 +02:00

14 lines
248 B
PHP

<?php
namespace Alchemy\Tests\Phrasea\TaskManager\Job;
use Alchemy\Phrasea\TaskManager\Job\NullJob;
class NullJobTest extends JobTestCase
{
protected function getJob()
{
return new NullJob($this->createTranslatorMock());
}
}