mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00

* allow user to delete account * generate translation and add checkbox in the windows confirmation * change text an configuration key * update delete account fonctionality * rename variable * write in explicite condition * merge yarn.lock * regenerate translation
24 lines
546 B
PHP
24 lines
546 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\Notification\Mail;
|
|
|
|
use Alchemy\Phrasea\Notification\Mail\MailSuccessAccountDelete;
|
|
|
|
/**
|
|
* @group functional
|
|
* @group legacy
|
|
* @covers Alchemy\Phrasea\Notification\Mail\MailSuccessAccountDelete
|
|
*/
|
|
class MailSuccessAccountDeleteTest extends MailTestCase
|
|
{
|
|
public function getMail()
|
|
{
|
|
return MailSuccessAccountDelete::create(
|
|
$this->getApplication(),
|
|
$this->getReceiverMock(),
|
|
$this->getEmitterMock(),
|
|
$this->getMessage()
|
|
);
|
|
}
|
|
}
|