Esempio n. 1
0
 public function testSetContent()
 {
     $p = new ae_PageModel();
     $p->setContent('<p>lorem <strong>ipsum</strong>!</p>');
     $this->assertEquals($p->getContent(), '<p>lorem <strong>ipsum</strong>!</p>');
     $p->setContent(4);
     $this->assertTrue($p->getContent() === '4');
 }