*/
public void testGetUserPrincipalsInGroup() throws Exception
{
secHandler.setUserPrincipalInGroup(uid1, gp1.getName());
secHandler.setUserPrincipalInGroup(uid2, gp1.getName());
String fullPathName = new GroupPrincipalImpl(gpUid1).getName();
logger.debug("Group full path name from testGetUserPrincipalsInGroup()[" + fullPathName + "]");
Set userPrincipals = secHandler.getUserPrincipalsInGroup(fullPathName);
assertTrue(userPrincipals.contains(new UserPrincipalImpl(uid1)));
assertTrue(userPrincipals.contains(new UserPrincipalImpl(uid2)));