mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
12 lines
252 B
PHP
12 lines
252 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\Notification\Mail;
|
|
|
|
abstract class MailWithLinkTestCase extends MailTestCase
|
|
{
|
|
public function testGetExpiration()
|
|
{
|
|
$this->assertInstanceOf('DateTime', $this->getMail()->getExpiration());
|
|
}
|
|
}
|