aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock/TestClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestClient.cs')
-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 b83ef9b..4e17b04 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; }
@@ -324,6 +324,8 @@ namespace OpenSim.Tests.Common.Mock
324 /// </value> 324 /// </value>
325 private UUID m_agentId; 325 private UUID m_agentId;
326 326
327 public ISceneAgent SceneAgent { get { throw new NotImplementedException(); } }
328
327 /// <value> 329 /// <value>
328 /// The last caps seed url that this client was given. 330 /// The last caps seed url that this client was given.
329 /// </value> 331 /// </value>
@@ -437,7 +439,7 @@ namespace OpenSim.Tests.Common.Mock
437 /// </summary> 439 /// </summary>
438 /// <param name="agentData"></param> 440 /// <param name="agentData"></param>
439 /// <param name="scene"></param> 441 /// <param name="scene"></param>
440 public TestClient(AgentCircuitData agentData, IScene scene) 442 public TestClient(AgentCircuitData agentData, Scene scene)
441 { 443 {
442 m_agentId = agentData.AgentID; 444 m_agentId = agentData.AgentID;
443 m_firstName = agentData.firstname; 445 m_firstName = agentData.firstname;
@@ -899,6 +901,7 @@ namespace OpenSim.Tests.Common.Mock
899 901
900 public void Start() 902 public void Start()
901 { 903 {
904 throw new NotImplementedException();
902 } 905 }
903 906
904 public void Stop() 907 public void Stop()