diff options
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestClient.cs')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestClient.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs index 266e703..2134200 100644 --- a/OpenSim/Tests/Common/Mock/TestClient.cs +++ b/OpenSim/Tests/Common/Mock/TestClient.cs | |||
@@ -287,6 +287,26 @@ namespace OpenSim.Tests.Common.Mock | |||
287 | public event AvatarInterestUpdate OnAvatarInterestUpdate; | 287 | public event AvatarInterestUpdate OnAvatarInterestUpdate; |
288 | 288 | ||
289 | public event PlacesQuery OnPlacesQuery; | 289 | public event PlacesQuery OnPlacesQuery; |
290 | |||
291 | public event FindAgentUpdate OnFindAgentEvent; | ||
292 | public event TrackAgentUpdate OnTrackAgentEvent; | ||
293 | public event NewUserReport OnUserReportEvent; | ||
294 | public event SaveStateHandler OnSaveStateEvent; | ||
295 | public event GroupAccountSummaryRequest OnGroupAccountSummaryRequest; | ||
296 | public event GroupAccountDetailsRequest OnGroupAccountDetailsRequest; | ||
297 | public event GroupAccountTransactionsRequest OnGroupAccountTransactionsRequest; | ||
298 | public event FreezeUserUpdate OnParcelFreezeUserEvent; | ||
299 | public event EjectUserUpdate OnParcelEjectUserEvent; | ||
300 | public event ParcelBuyPass OnParcelBuyPass; | ||
301 | public event ParcelGodMark OnParcelGodMark; | ||
302 | public event GroupActiveProposalsRequest OnGroupActiveProposalsRequest; | ||
303 | public event GroupVoteHistoryRequest OnGroupVoteHistoryRequest; | ||
304 | public event SimWideDeletesDelegate OnSimWideDeletes; | ||
305 | public event SendPostcard OnSendPostcard; | ||
306 | public event MuteListEntryUpdate OnUpdateMuteListEntryEvent; | ||
307 | public event MuteListEntryRemove OnRemoveMuteListEntryEvent; | ||
308 | public event GodlikeMessage onGodlikeMessageEvent; | ||
309 | public event GodUpdateRegionInfoUpdate OnGodUpdateRegionInfoUpdateEvent; | ||
290 | 310 | ||
291 | #pragma warning restore 67 | 311 | #pragma warning restore 67 |
292 | 312 | ||
@@ -1163,5 +1183,17 @@ namespace OpenSim.Tests.Common.Mock | |||
1163 | public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages) | 1183 | public void SendAvatarInterestsReply(UUID avatarID, uint wantMask, string wantText, uint skillsMask, string skillsText, string languages) |
1164 | { | 1184 | { |
1165 | } | 1185 | } |
1186 | |||
1187 | public void SendGroupAccountingDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID, int amt) | ||
1188 | { | ||
1189 | } | ||
1190 | |||
1191 | public void SendGroupAccountingSummary(IClientAPI sender,UUID groupID, uint moneyAmt, int totalTier, int usedTier) | ||
1192 | { | ||
1193 | } | ||
1194 | |||
1195 | public void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt) | ||
1196 | { | ||
1197 | } | ||
1166 | } | 1198 | } |
1167 | } | 1199 | } |