diff options
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestClient.cs | 7 |
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() |