aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock
diff options
context:
space:
mode:
authorUbitUmarov2015-08-19 11:04:28 +0100
committerUbitUmarov2015-08-19 11:04:28 +0100
commit0af2fafddf36009ffe470da106dc6d0ceb3ced10 (patch)
treec5d2a58398fcc4bd1b4722a8379ce9bb643fe8e5 /OpenSim/Tests/Common/Mock
parentMerge branch 'mbworkvar2' into ubitvar (diff)
downloadopensim-SC_OLD-0af2fafddf36009ffe470da106dc6d0ceb3ced10.zip
opensim-SC_OLD-0af2fafddf36009ffe470da106dc6d0ceb3ced10.tar.gz
opensim-SC_OLD-0af2fafddf36009ffe470da106dc6d0ceb3ced10.tar.bz2
opensim-SC_OLD-0af2fafddf36009ffe470da106dc6d0ceb3ced10.tar.xz
add missing regionExtent setup and Scene physicsscene configuration ( not
exactly as core)
Diffstat (limited to 'OpenSim/Tests/Common/Mock')
-rw-r--r--OpenSim/Tests/Common/Mock/TestScene.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestScene.cs b/OpenSim/Tests/Common/Mock/TestScene.cs
index a7e0dfb..53a311e 100644
--- a/OpenSim/Tests/Common/Mock/TestScene.cs
+++ b/OpenSim/Tests/Common/Mock/TestScene.cs
@@ -33,16 +33,17 @@ using OpenSim.Framework.Servers;
33using OpenSim.Region.Framework; 33using OpenSim.Region.Framework;
34using OpenSim.Region.Framework.Interfaces; 34using OpenSim.Region.Framework.Interfaces;
35using OpenSim.Region.Framework.Scenes; 35using OpenSim.Region.Framework.Scenes;
36using OpenSim.Region.Physics.Manager;
36 37
37namespace OpenSim.Tests.Common.Mock 38namespace OpenSim.Tests.Common.Mock
38{ 39{
39 public class TestScene : Scene 40 public class TestScene : Scene
40 { 41 {
41 public TestScene( 42 public TestScene(
42 RegionInfo regInfo, AgentCircuitManager authen, 43 RegionInfo regInfo, AgentCircuitManager authen, PhysicsScene physicsScene,
43 SceneCommunicationService sceneGridService, ISimulationDataService simDataService, IEstateDataService estateDataService, 44 SceneCommunicationService sceneGridService, ISimulationDataService simDataService, IEstateDataService estateDataService,
44 IConfigSource config, string simulatorVersion) 45 IConfigSource config, string simulatorVersion)
45 : base(regInfo, authen, sceneGridService, simDataService, estateDataService, 46 : base(regInfo, authen, physicsScene, sceneGridService, simDataService, estateDataService,
46 config, simulatorVersion) 47 config, simulatorVersion)
47 { 48 {
48 } 49 }