Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Notification/Mail/MailSuccessAccountDeleteTest.php
aynsix 5cdf473c7f PHRAS-1972: Account Page, Allow a Phraseanet User to delete his account and associated datas (#2918)
* 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
2019-04-08 14:25:17 +02:00

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()
);
}
}