aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-01-05 16:30:35 +0000
committerJustin Clarke Casey2009-01-05 16:30:35 +0000
commit0b8d22ab544910a2b9b89b4bee2926a90b0da63f (patch)
treeb409ffaa85bfc48a369669854a1ff4493cc8829f /OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs
parentchange the drop order to see if this affects unit test fails (diff)
downloadopensim-SC_OLD-0b8d22ab544910a2b9b89b4bee2926a90b0da63f.zip
opensim-SC_OLD-0b8d22ab544910a2b9b89b4bee2926a90b0da63f.tar.gz
opensim-SC_OLD-0b8d22ab544910a2b9b89b4bee2926a90b0da63f.tar.bz2
opensim-SC_OLD-0b8d22ab544910a2b9b89b4bee2926a90b0da63f.tar.xz
* Check in login service tests beachhead
Diffstat (limited to '')
-rw-r--r--OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs9
1 files changed, 7 insertions, 2 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs b/OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs
index a6a025b..472645c 100644
--- a/OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs
+++ b/OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs
@@ -36,7 +36,12 @@ namespace OpenSim.Tests.Common.Mock
36 public class TestCommunicationsManager : CommunicationsManager 36 public class TestCommunicationsManager : CommunicationsManager
37 { 37 {
38 public TestCommunicationsManager() 38 public TestCommunicationsManager()
39 : base(null, null, null, false, null) 39 : this(null)
40 {
41 }
42
43 public TestCommunicationsManager(NetworkServersInfo serversInfo)
44 : base(serversInfo, null, null, false, null)
40 { 45 {
41 LocalInventoryService lis = new LocalInventoryService(); 46 LocalInventoryService lis = new LocalInventoryService();
42 m_interServiceInventoryService = lis; 47 m_interServiceInventoryService = lis;
@@ -44,7 +49,7 @@ namespace OpenSim.Tests.Common.Mock
44 49
45 LocalUserServices lus = new LocalUserServices(991, 992, lis); 50 LocalUserServices lus = new LocalUserServices(991, 992, lis);
46 m_userService = lus; 51 m_userService = lus;
47 m_userAdminService = lus; 52 m_userAdminService = lus;
48 } 53 }
49 } 54 }
50} 55}