Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Notification/Mail/MailSuccessEmailUpdateTest.php
2013-01-29 09:34:18 +01:00

22 lines
492 B
PHP

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