mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-04 07:14:02 +01:00
22 lines
360 B
PHP
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);
|
|
}
|
|
}
|