mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-02 22:34:03 +01:00
22 lines
392 B
PHP
22 lines
392 B
PHP
<?php
|
|
|
|
namespace Roundcube\Tests\Actions\Mail;
|
|
|
|
use Roundcube\Tests\ActionTestCase;
|
|
|
|
/**
|
|
* Test class to test rcmail_action_mail_sendmdn
|
|
*/
|
|
class SendmdnTest extends ActionTestCase
|
|
{
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
public function test_class()
|
|
{
|
|
$object = new \rcmail_action_mail_sendmdn();
|
|
|
|
$this->assertInstanceOf(\rcmail_action::class, $object);
|
|
}
|
|
}
|