コード例 #1
0
ファイル: EntryTest.php プロジェクト: bradley-holt/postr
 public function testSetAndGetContent()
 {
     $value = 'Test entry with' . PHP_EOL . 'multiple lines.';
     $this->_entry->setContent($value);
     $this->assertEquals($value, $this->_entry->getContent());
 }