public function testUnquotedReply()
 {
     $body = $this->getFixtures('email_unquoted_reply.txt');
     $this->assertEquals('This is my reply.', EmailReplyParser::parseReply($body));
 }
示例#2
0
 public function testParseOutSentFromBlackBerry()
 {
     $body = file_get_contents(__DIR__ . '/../../Fixtures/email_blackberry.txt');
     $this->assertEquals('Here is another email', EmailReplyParser::parseReply($body));
 }