Esempio n. 1
0
 public function testSetId()
 {
     $c = new ae_CommentModel();
     $c->setId(4);
     $this->assertTrue($c->getId() === 4);
     $this->setExpectedException('Exception');
     $c->setId(-1);
 }