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