Beispiel #1
0
 public function testSetUserId()
 {
     $p = new ae_PostModel();
     $p->setUserId(4);
     $this->assertTrue($p->getUserId() === 4);
     $this->setExpectedException('Exception');
     $p->setUserId(-1);
 }