mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-22 15:56:58 +01:00
* fix Tests\Browser\TestCase imports * fix remaining imports * fix PHPUnit\Framework\TestCase imports * import GuzzleHttp\Client * fix remaining * "php_unit_method_casing" is not todo * fix "single_line_comment_spacing" * fix 2nd commit done using older fixer
22 lines
361 B
PHP
22 lines
361 B
PHP
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Test class to test rcmail_resend_mail class
|
|
*/
|
|
class Rcmail_RcmailResendMail extends TestCase
|
|
{
|
|
/**
|
|
* Test for header() method
|
|
*/
|
|
public function test_headers()
|
|
{
|
|
$mail = new rcmail_resend_mail();
|
|
|
|
$result = $mail->headers();
|
|
|
|
$this->assertSame([], $result);
|
|
}
|
|
}
|