aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index 70a2d11..e7cdee9 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -237,6 +237,11 @@ namespace OpenSim.Tests.Common.Mock
237 public event TeleportLureRequest OnTeleportLureRequest; 237 public event TeleportLureRequest OnTeleportLureRequest;
238 public event NetworkStats OnNetworkStatsUpdate; 238 public event NetworkStats OnNetworkStatsUpdate;
239 239
240 public event ClassifiedInfoRequest OnClassifiedInfoRequest;
241 public event ClassifiedInfoUpdate OnClassifiedInfoUpdate;
242 public event ClassifiedDelete OnClassifiedDelete;
243 public event ClassifiedDelete OnClassifiedGodDelete;
244
240#pragma warning restore 67 245#pragma warning restore 67
241 246
242 /// <value> 247 /// <value>
@@ -953,5 +958,13 @@ namespace OpenSim.Tests.Common.Mock
953 return false; 958 return false;
954 } 959 }
955 960
961 public void SendAvatarClassifiedReply(UUID targetID, UUID[] classifiedID, string[] name)
962 {
963 }
964
965 public void SendClassifiedInfoReply(UUID classifiedID, UUID creatorID, uint creationDate, uint expirationDate, uint category, string name, string description, UUID parcelID, uint parentEstate, UUID snapshotID, string simName, Vector3 globalPos, string parcelName, byte classifiedFlags, int price)
966 {
967 }
968
956 } 969 }
957} 970}