aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common
diff options
context:
space:
mode:
authorMelanie2011-12-08 18:29:19 +0000
committerMelanie2011-12-08 18:29:19 +0000
commit96539ffc79c1654feddc17592170f0e4b57f5b8d (patch)
treed500df1c7a7b37cae6e74d52b67f51aa7bfad46d /OpenSim/Tests/Common
parentMerge branch 'master' into bigmerge (diff)
parentWhen a client connects to a scene, send other avatar appearance data asynchro... (diff)
downloadopensim-SC_OLD-96539ffc79c1654feddc17592170f0e4b57f5b8d.zip
opensim-SC_OLD-96539ffc79c1654feddc17592170f0e4b57f5b8d.tar.gz
opensim-SC_OLD-96539ffc79c1654feddc17592170f0e4b57f5b8d.tar.bz2
opensim-SC_OLD-96539ffc79c1654feddc17592170f0e4b57f5b8d.tar.xz
Merge branch 'master' into bigmerge
Conflicts: OpenSim/Region/Framework/Scenes/Scene.cs
Diffstat (limited to 'OpenSim/Tests/Common')
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index 1e74451..2b7895b 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -54,7 +54,7 @@ namespace OpenSim.Tests.Common.Mock
54 public Scene TeleportTargetScene; 54 public Scene TeleportTargetScene;
55 private TestClient TeleportSceneClient; 55 private TestClient TeleportSceneClient;
56 56
57 private IScene m_scene; 57 private Scene m_scene;
58 58
59 // Properties so that we can get at received data for test purposes 59 // Properties so that we can get at received data for test purposes
60 public List<UUID> ReceivedOfflineNotifications { get; private set; } 60 public List<UUID> ReceivedOfflineNotifications { get; private set; }
@@ -325,6 +325,8 @@ namespace OpenSim.Tests.Common.Mock
325 /// </value> 325 /// </value>
326 private UUID m_agentId; 326 private UUID m_agentId;
327 327
328 public ISceneAgent SceneAgent { get { throw new NotImplementedException(); } }
329
328 /// <value> 330 /// <value>
329 /// The last caps seed url that this client was given. 331 /// The last caps seed url that this client was given.
330 /// </value> 332 /// </value>
@@ -438,7 +440,7 @@ namespace OpenSim.Tests.Common.Mock
438 /// </summary> 440 /// </summary>
439 /// <param name="agentData"></param> 441 /// <param name="agentData"></param>
440 /// <param name="scene"></param> 442 /// <param name="scene"></param>
441 public TestClient(AgentCircuitData agentData, IScene scene) 443 public TestClient(AgentCircuitData agentData, Scene scene)
442 { 444 {
443 m_agentId = agentData.AgentID; 445 m_agentId = agentData.AgentID;
444 m_firstName = agentData.firstname; 446 m_firstName = agentData.firstname;
@@ -904,6 +906,7 @@ namespace OpenSim.Tests.Common.Mock
904 906
905 public void Start() 907 public void Start()
906 { 908 {
909 throw new NotImplementedException();
907 } 910 }
908 911
909 public void Stop() 912 public void Stop()