Files
roundcubemail/tests/Rcmail/ResendMail.php
Aleksander Machniak 8b16a7dfe7 More tests
2020-11-08 11:06:42 +01:00

22 lines
360 B
PHP

<?php
/**
* Test class to test rcmail_resend_mail class
*
* @package Tests
*/
class Rcmail_RcmailResendMail extends PHPUnit\Framework\TestCase
{
/**
* Test for header() method
*/
function test_headers()
{
$mail = new rcmail_resend_mail();
$result = $mail->headers();
$this->assertSame([], $result);
}
}