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.cs16
1 files changed, 12 insertions, 4 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index 7dab6a1..6403c1b 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -95,7 +95,7 @@ namespace OpenSim.Tests.Common.Mock
95 public event DeRezObject OnDeRezObject; 95 public event DeRezObject OnDeRezObject;
96 public event Action<IClientAPI> OnRegionHandShakeReply; 96 public event Action<IClientAPI> OnRegionHandShakeReply;
97 public event GenericCall2 OnRequestWearables; 97 public event GenericCall2 OnRequestWearables;
98 public event GenericCall2 OnCompleteMovementToRegion; 98 public event GenericCall1 OnCompleteMovementToRegion;
99 public event UpdateAgent OnAgentUpdate; 99 public event UpdateAgent OnAgentUpdate;
100 public event AgentRequestSit OnAgentRequestSit; 100 public event AgentRequestSit OnAgentRequestSit;
101 public event AgentSit OnAgentSit; 101 public event AgentSit OnAgentSit;
@@ -367,7 +367,11 @@ namespace OpenSim.Tests.Common.Mock
367 get { return true; } 367 get { return true; }
368 set { } 368 set { }
369 } 369 }
370 370 public bool IsLoggingOut
371 {
372 get { return false; }
373 set { }
374 }
371 public UUID ActiveGroupId 375 public UUID ActiveGroupId
372 { 376 {
373 get { return UUID.Zero; } 377 get { return UUID.Zero; }
@@ -449,7 +453,7 @@ namespace OpenSim.Tests.Common.Mock
449 453
450 public void CompleteMovement() 454 public void CompleteMovement()
451 { 455 {
452 OnCompleteMovementToRegion(); 456 OnCompleteMovementToRegion(this);
453 } 457 }
454 458
455 public virtual void ActivateGesture(UUID assetId, UUID gestureId) 459 public virtual void ActivateGesture(UUID assetId, UUID gestureId)
@@ -748,7 +752,7 @@ namespace OpenSim.Tests.Common.Mock
748 752
749 if (OnCompleteMovementToRegion != null) 753 if (OnCompleteMovementToRegion != null)
750 { 754 {
751 OnCompleteMovementToRegion(); 755 OnCompleteMovementToRegion(this);
752 } 756 }
753 } 757 }
754 public void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, UUID AssetFullID) 758 public void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, UUID AssetFullID)
@@ -1205,5 +1209,9 @@ namespace OpenSim.Tests.Common.Mock
1205 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) 1209 public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals)
1206 { 1210 {
1207 } 1211 }
1212
1213 public void SendChangeUserRights(UUID agentID, UUID friendID, int rights)
1214 {
1215 }
1208 } 1216 }
1209} 1217}