diff options
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestClient.cs')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestClient.cs | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs index 14c1287..2fe22a5 100644 --- a/OpenSim/Tests/Common/Mock/TestClient.cs +++ b/OpenSim/Tests/Common/Mock/TestClient.cs | |||
@@ -71,7 +71,7 @@ namespace OpenSim.Tests.Common.Mock | |||
71 | public event MoneyTransferRequest OnMoneyTransferRequest; | 71 | public event MoneyTransferRequest OnMoneyTransferRequest; |
72 | public event ParcelBuy OnParcelBuy; | 72 | public event ParcelBuy OnParcelBuy; |
73 | public event Action<IClientAPI> OnConnectionClosed; | 73 | public event Action<IClientAPI> OnConnectionClosed; |
74 | 74 | public event MoveItemsAndLeaveCopy OnMoveItemsAndLeaveCopy; | |
75 | public event ImprovedInstantMessage OnInstantMessage; | 75 | public event ImprovedInstantMessage OnInstantMessage; |
76 | public event ChatMessage OnChatFromClient; | 76 | public event ChatMessage OnChatFromClient; |
77 | public event TextureRequest OnRequestTexture; | 77 | public event TextureRequest OnRequestTexture; |
@@ -135,6 +135,7 @@ namespace OpenSim.Tests.Common.Mock | |||
135 | public event GenericCall7 OnObjectMaterial; | 135 | public event GenericCall7 OnObjectMaterial; |
136 | public event UpdatePrimFlags OnUpdatePrimFlags; | 136 | public event UpdatePrimFlags OnUpdatePrimFlags; |
137 | public event UpdatePrimTexture OnUpdatePrimTexture; | 137 | public event UpdatePrimTexture OnUpdatePrimTexture; |
138 | public event ClientChangeObject onClientChangeObject; | ||
138 | public event UpdateVector OnUpdatePrimGroupPosition; | 139 | public event UpdateVector OnUpdatePrimGroupPosition; |
139 | public event UpdateVector OnUpdatePrimSinglePosition; | 140 | public event UpdateVector OnUpdatePrimSinglePosition; |
140 | public event UpdatePrimRotation OnUpdatePrimGroupRotation; | 141 | public event UpdatePrimRotation OnUpdatePrimGroupRotation; |
@@ -276,7 +277,7 @@ namespace OpenSim.Tests.Common.Mock | |||
276 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; | 277 | public event ClassifiedInfoRequest OnClassifiedInfoRequest; |
277 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; | 278 | public event ClassifiedInfoUpdate OnClassifiedInfoUpdate; |
278 | public event ClassifiedDelete OnClassifiedDelete; | 279 | public event ClassifiedDelete OnClassifiedDelete; |
279 | public event ClassifiedDelete OnClassifiedGodDelete; | 280 | public event ClassifiedGodDelete OnClassifiedGodDelete; |
280 | 281 | ||
281 | public event EventNotificationAddRequest OnEventNotificationAddRequest; | 282 | public event EventNotificationAddRequest OnEventNotificationAddRequest; |
282 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; | 283 | public event EventNotificationRemoveRequest OnEventNotificationRemoveRequest; |
@@ -315,6 +316,7 @@ namespace OpenSim.Tests.Common.Mock | |||
315 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; | 316 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; |
316 | public event SimWideDeletesDelegate OnSimWideDeletes; | 317 | public event SimWideDeletesDelegate OnSimWideDeletes; |
317 | public event SendPostcard OnSendPostcard; | 318 | public event SendPostcard OnSendPostcard; |
319 | public event ChangeInventoryItemFlags OnChangeInventoryItemFlags; | ||
318 | public event MuteListEntryUpdate OnUpdateMuteListEntry; | 320 | public event MuteListEntryUpdate OnUpdateMuteListEntry; |
319 | public event MuteListEntryRemove OnRemoveMuteListEntry; | 321 | public event MuteListEntryRemove OnRemoveMuteListEntry; |
320 | public event GodlikeMessage onGodlikeMessage; | 322 | public event GodlikeMessage onGodlikeMessage; |
@@ -907,6 +909,10 @@ namespace OpenSim.Tests.Common.Mock | |||
907 | 909 | ||
908 | public void Close() | 910 | public void Close() |
909 | { | 911 | { |
912 | Close(true); | ||
913 | } | ||
914 | public void Close(bool sendStop) | ||
915 | { | ||
910 | m_scene.RemoveClient(AgentId, true); | 916 | m_scene.RemoveClient(AgentId, true); |
911 | } | 917 | } |
912 | 918 | ||
@@ -1252,5 +1258,9 @@ namespace OpenSim.Tests.Common.Mock | |||
1252 | public void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data) | 1258 | public void SendPlacesReply(UUID queryID, UUID transactionID, PlacesReplyData[] data) |
1253 | { | 1259 | { |
1254 | } | 1260 | } |
1261 | |||
1262 | public void SendPartPhysicsProprieties(ISceneEntity entity) | ||
1263 | { | ||
1264 | } | ||
1255 | } | 1265 | } |
1256 | } | 1266 | } |