* Check in login service tests beachhead

This commit is contained in:
Justin Clarke Casey
2009-01-05 16:30:35 +00:00
parent d8a2ad5cb5
commit 0b8d22ab54
5 changed files with 17 additions and 12 deletions

View File

@@ -36,7 +36,12 @@ namespace OpenSim.Tests.Common.Mock
public class TestCommunicationsManager : CommunicationsManager
{
public TestCommunicationsManager()
: base(null, null, null, false, null)
: this(null)
{
}
public TestCommunicationsManager(NetworkServersInfo serversInfo)
: base(serversInfo, null, null, false, null)
{
LocalInventoryService lis = new LocalInventoryService();
m_interServiceInventoryService = lis;
@@ -44,7 +49,7 @@ namespace OpenSim.Tests.Common.Mock
LocalUserServices lus = new LocalUserServices(991, 992, lis);
m_userService = lus;
m_userAdminService = lus;
m_userAdminService = lus;
}
}
}