diff options
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestClient.cs')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestClient.cs | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs index 68ac96a..f015db2 100644 --- a/OpenSim/Tests/Common/Mock/TestClient.cs +++ b/OpenSim/Tests/Common/Mock/TestClient.cs | |||
@@ -95,7 +95,8 @@ 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 OnPreAgentUpdate; | ||
99 | public event UpdateAgent OnAgentUpdate; | 100 | public event UpdateAgent OnAgentUpdate; |
100 | public event AgentRequestSit OnAgentRequestSit; | 101 | public event AgentRequestSit OnAgentRequestSit; |
101 | public event AgentSit OnAgentSit; | 102 | public event AgentSit OnAgentSit; |
@@ -367,7 +368,11 @@ namespace OpenSim.Tests.Common.Mock | |||
367 | get { return true; } | 368 | get { return true; } |
368 | set { } | 369 | set { } |
369 | } | 370 | } |
370 | 371 | public bool IsLoggingOut | |
372 | { | ||
373 | get { return false; } | ||
374 | set { } | ||
375 | } | ||
371 | public UUID ActiveGroupId | 376 | public UUID ActiveGroupId |
372 | { | 377 | { |
373 | get { return UUID.Zero; } | 378 | get { return UUID.Zero; } |
@@ -449,7 +454,7 @@ namespace OpenSim.Tests.Common.Mock | |||
449 | 454 | ||
450 | public void CompleteMovement() | 455 | public void CompleteMovement() |
451 | { | 456 | { |
452 | OnCompleteMovementToRegion(); | 457 | OnCompleteMovementToRegion(this); |
453 | } | 458 | } |
454 | 459 | ||
455 | public virtual void ActivateGesture(UUID assetId, UUID gestureId) | 460 | public virtual void ActivateGesture(UUID assetId, UUID gestureId) |
@@ -748,7 +753,7 @@ namespace OpenSim.Tests.Common.Mock | |||
748 | 753 | ||
749 | if (OnCompleteMovementToRegion != null) | 754 | if (OnCompleteMovementToRegion != null) |
750 | { | 755 | { |
751 | OnCompleteMovementToRegion(); | 756 | OnCompleteMovementToRegion(this); |
752 | } | 757 | } |
753 | } | 758 | } |
754 | public void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, UUID AssetFullID) | 759 | public void SendAssetUploadCompleteMessage(sbyte AssetType, bool Success, UUID AssetFullID) |
@@ -1205,5 +1210,13 @@ namespace OpenSim.Tests.Common.Mock | |||
1205 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) | 1210 | public void SendGroupActiveProposals(UUID groupID, UUID transactionID, GroupActiveProposals[] Proposals) |
1206 | { | 1211 | { |
1207 | } | 1212 | } |
1213 | |||
1214 | public void SendChangeUserRights(UUID agentID, UUID friendID, int rights) | ||
1215 | { | ||
1216 | } | ||
1217 | |||
1218 | public void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId) | ||
1219 | { | ||
1220 | } | ||
1208 | } | 1221 | } |
1209 | } | 1222 | } |