diff options
author | Justin Clark-Casey (justincc) | 2010-12-14 22:57:36 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-12-14 22:57:36 +0000 |
commit | 42c9c30e4c3102d1f34e28353ddec23c854c5d35 (patch) | |
tree | 5331ee271d58e6a95e88b7b0e5ed07ceac25d1dd /OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/Tests | |
parent | add infrastructure for groups module tests (diff) | |
download | opensim-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.cs | 11 |
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 | ||
28 | using System; | 28 | using System; |
29 | using System.Reflection; | 29 | using System.Reflection; |
30 | using Nini.Config; | ||
30 | using NUnit.Framework; | 31 | using NUnit.Framework; |
31 | using NUnit.Framework.SyntaxHelpers; | 32 | using NUnit.Framework.SyntaxHelpers; |
32 | using OpenMetaverse; | 33 | using 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 |