mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
* Extend stub to test the successful login of a user on the local login service
* Test does not do authentication
This commit is contained in:
@@ -49,7 +49,10 @@ namespace OpenSim.Tests.Common.Mock
|
||||
|
||||
LocalUserServices lus = new LocalUserServices(991, 992, lis);
|
||||
m_userService = lus;
|
||||
m_userAdminService = lus;
|
||||
m_userAdminService = lus;
|
||||
|
||||
LocalBackEndServices gs = new LocalBackEndServices();
|
||||
m_gridService = gs;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -102,7 +102,10 @@ namespace OpenSim.Tests.Common.Mock
|
||||
|
||||
public void UpdateUserFriendPerms(UUID friendlistowner, UUID friend, uint perms) {}
|
||||
|
||||
public List<FriendListItem> GetUserFriendList(UUID friendlistowner) { return null; }
|
||||
public List<FriendListItem> GetUserFriendList(UUID friendlistowner)
|
||||
{
|
||||
return new List<FriendListItem>();
|
||||
}
|
||||
|
||||
public Dictionary<UUID, FriendRegionInfo> GetFriendRegionInfos(List<UUID> uuids) { return null; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user