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

24 lines
538 B
PHP

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