예제 #1
0
 /**
  * @covers AclUtility::getMappingFieldByTbl
  * @todo Implement testGetMappingFieldByTbl().
  */
 public function testGetMappingFieldByTbl()
 {
     $arr = $this->object->getMappingFieldByTbl(1);
     $this->assertEquals('account_id', $arr['user_id']);
     $this->assertEquals('pwd', $arr['pwd']);
     $this->assertEquals('salt', $arr['pwd_encrypt']);
     $this->assertEquals('is_delete', $arr['is_delete']);
     $this->assertEquals('0', $arr['is_delete_value']);
 }