mirror of https://github.com/itflow-org/itflow
27 lines
553 B
PHP
27 lines
553 B
PHP
<?php
|
|
/*
|
|
* File: Issue401Test.php
|
|
* Category: Test
|
|
* Author: M.Goldenbaum
|
|
* Created: 23.06.23 22:48
|
|
* Updated: -
|
|
*
|
|
* Description:
|
|
* -
|
|
*/
|
|
|
|
namespace Tests\issues;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Webklex\PHPIMAP\Message;
|
|
|
|
class Issue401Test extends TestCase {
|
|
|
|
public function testIssueEmail() {
|
|
$filename = implode(DIRECTORY_SEPARATOR, [__DIR__, "..", "messages", "issue-401.eml"]);
|
|
$message = Message::fromFile($filename);
|
|
|
|
self::assertSame("1;00pm Client running few minutes late", (string)$message->subject);
|
|
}
|
|
|
|
} |