コード例 #1
0
 /**
  * @covers ByJG\Mail\Envelope::getBody
  * @covers ByJG\Mail\Envelope::setBody
  * @covers ByJG\Mail\Envelope::getBodyText
  */
 public function testGetBody()
 {
     $this->object->setBody('<p><b>Some title</b></p><p>Other test<br/>Break</p>');
     $this->assertEquals('<p><b>Some title</b></p><p>Other test<br/>Break</p>', $this->object->getBody());
     $this->assertEquals("Some title\nOther test\nBreak\n", $this->object->getBodyText());
 }