コード例 #1
0
ファイル: UserDaoTest.php プロジェクト: DanielDobre/fossology
 /**
  * @expectedException \Exception
  */
 public function testAddGroupFailEmptyName()
 {
     $this->testDb->createPlainTables(array('groups', 'users'));
     $this->testDb->insertData(array('groups', 'user'));
     $this->userDao->addGroup('');
 }