diff options
author | Diva Canto | 2009-12-31 17:19:22 -0800 |
---|---|---|
committer | Diva Canto | 2009-12-31 17:19:22 -0800 |
commit | 1427572294ca1318647a68447fb2cc8ac17dd261 (patch) | |
tree | 7751d7428ef184af8c781a6436ba5693c6ff2a33 /OpenSim/Tests | |
parent | A lot more beef on the login service. The LLLoginResponse is a MONSTER! Almos... (diff) | |
parent | Merge branch 'master' into presence-refactor (diff) | |
download | opensim-SC_OLD-1427572294ca1318647a68447fb2cc8ac17dd261.zip opensim-SC_OLD-1427572294ca1318647a68447fb2cc8ac17dd261.tar.gz opensim-SC_OLD-1427572294ca1318647a68447fb2cc8ac17dd261.tar.bz2 opensim-SC_OLD-1427572294ca1318647a68447fb2cc8ac17dd261.tar.xz |
Merge branch 'presence-refactor' of ssh://diva@opensimulator.org/var/git/opensim into presence-refactor
Diffstat (limited to '')
-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 6265ab7..8da9209 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 | } |