/**Test Update Group**/
@Test
public void TestUpdateGroup(){
final String newName = "Administrator";
final String newDescription = "System Admin";
final Group group = super.createGroups("fifth group");
group.setGroupName(newName);
group.setGroupDescriptionInfo(newDescription);
getGroup().saveOrUpdate(group);
final Group retrieveGroup = getGroupDaoImp().getGroupById(
Long.valueOf(group.getGroupId()));
assertEquals("New Name should be", newName,
retrieveGroup.getGroupName());
assertEquals("New Description should be", newDescription,
retrieveGroup.getGroupDescriptionInfo());
}