Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Notification/Mail/MailRequestEmailUpdateTest.php
2015-07-02 12:33:19 +02:00

26 lines
611 B
PHP

<?php
namespace Alchemy\Tests\Phrasea\Notification\Mail;
use Alchemy\Phrasea\Notification\Mail\MailRequestEmailUpdate;
/**
* @group functional
* @group legacy
* @covers Alchemy\Phrasea\Notification\Mail\MailRequestEmailUpdate
*/
class MailRequestEmailUpdateTest extends MailWithLinkTestCase
{
public function getMail()
{
return MailRequestEmailUpdate::create(
$this->getApplication(),
$this->getReceiverMock(),
$this->getEmitterMock(),
$this->getMessage(),
$this->getUrl(),
$this->getExpiration()
);
}
}