コード例 #1
0
ファイル: ae_UserModelTest.php プロジェクト: sebadorn/aestas3
 public function testSetId()
 {
     $u = new ae_UserModel();
     $u->setId(4);
     $this->assertTrue($u->getId() === 4);
     $this->setExpectedException('Exception');
     $u->setId(-1);
 }