mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
26 lines
619 B
PHP
26 lines
619 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\Notification\Mail;
|
|
|
|
use Alchemy\Phrasea\Notification\Mail\MailSuccessAccessRequest;
|
|
|
|
/**
|
|
* @group functional
|
|
* @group legacy
|
|
* @covers Alchemy\Phrasea\Notification\Mail\MailSuccessAccessRequest
|
|
*/
|
|
class MailSuccessAccessRequestTest extends MailWithLinkTestCase
|
|
{
|
|
public function getMail()
|
|
{
|
|
return MailSuccessAccessRequest::create(
|
|
$this->getApplication(),
|
|
$this->getReceiverMock(),
|
|
$this->getEmitterMock(),
|
|
$this->getMessage(),
|
|
$this->getUrl(),
|
|
$this->getExpiration()
|
|
);
|
|
}
|
|
}
|