aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/Tests
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-12-14 22:57:36 +0000
committerJustin Clark-Casey (justincc)2010-12-14 22:57:36 +0000
commit42c9c30e4c3102d1f34e28353ddec23c854c5d35 (patch)
tree5331ee271d58e6a95e88b7b0e5ed07ceac25d1dd /OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/Tests
parentadd infrastructure for groups module tests (diff)
downloadopensim-SC_OLD-42c9c30e4c3102d1f34e28353ddec23c854c5d35.zip
opensim-SC_OLD-42c9c30e4c3102d1f34e28353ddec23c854c5d35.tar.gz
opensim-SC_OLD-42c9c30e4c3102d1f34e28353ddec23c854c5d35.tar.bz2
opensim-SC_OLD-42c9c30e4c3102d1f34e28353ddec23c854c5d35.tar.xz
Add mock group services connector and use this in tests
Diffstat (limited to 'OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/Tests')
-rw-r--r--OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/Tests/GroupsModuleTests.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/Tests/GroupsModuleTests.cs b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/Tests/GroupsModuleTests.cs
index f9a736f..bc55b04 100644
--- a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/Tests/GroupsModuleTests.cs
+++ b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/Tests/GroupsModuleTests.cs
@@ -27,6 +27,7 @@
27 27
28using System; 28using System;
29using System.Reflection; 29using System.Reflection;
30using Nini.Config;
30using NUnit.Framework; 31using NUnit.Framework;
31using NUnit.Framework.SyntaxHelpers; 32using NUnit.Framework.SyntaxHelpers;
32using OpenMetaverse; 33using OpenMetaverse;
@@ -49,6 +50,16 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups.Tests
49 public void TestBasic() 50 public void TestBasic()
50 { 51 {
51 TestHelper.InMethod(); 52 TestHelper.InMethod();
53// log4net.Config.XmlConfigurator.Configure();
54
55 TestScene scene = SceneSetupHelpers.SetupScene();
56 IConfigSource configSource = new IniConfigSource();
57 IConfig config = configSource.AddConfig("Groups");
58 config.Set("Enabled", true);
59 config.Set("Module", "GroupsModule");
60 config.Set("DebugEnabled", true);
61 SceneSetupHelpers.SetupSceneModules(
62 scene, configSource, new object[] { new MockGroupsServicesConnector() });
52 } 63 }
53 } 64 }
54} \ No newline at end of file 65} \ No newline at end of file