mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-15 14:03:27 +00:00
24 lines
589 B
PHP
24 lines
589 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\Notification\Mail;
|
|
|
|
use Alchemy\Phrasea\Notification\Mail\MailRequestEmailConfirmation;
|
|
|
|
/**
|
|
* @covers Alchemy\Phrasea\Notification\Mail\MailRequestEmailConfirmation
|
|
*/
|
|
class MailRequestEmailConfirmationTest extends MailWithLinkTestCase
|
|
{
|
|
public function getMail()
|
|
{
|
|
return MailRequestEmailConfirmation::create(
|
|
$this->getApp(),
|
|
$this->getReceiverMock(),
|
|
$this->getEmitterMock(),
|
|
$this->getMessage(),
|
|
$this->getUrl(),
|
|
$this->getExpiration()
|
|
);
|
|
}
|
|
}
|