aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs16
-rw-r--r--OpenSim/Tests/Common/Mock/TestLandChannel.cs2
2 files changed, 10 insertions, 8 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index de9ab98..fd14291 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -369,6 +369,8 @@ namespace OpenSim.Tests.Common
369 set { } 369 set { }
370 } 370 }
371 371
372 public float StartFar { get; set; }
373
372 public virtual UUID AgentId 374 public virtual UUID AgentId
373 { 375 {
374 get { return m_agentId; } 376 get { return m_agentId; }
@@ -576,10 +578,6 @@ namespace OpenSim.Tests.Common
576 { 578 {
577 } 579 }
578 580
579 public virtual void SendStartPingCheck(byte seq)
580 {
581 }
582
583 public virtual void SendAvatarPickerReply(AvatarPickerReplyAgentDataArgs AgentData, List<AvatarPickerReplyDataArgs> Data) 581 public virtual void SendAvatarPickerReply(AvatarPickerReplyAgentDataArgs AgentData, List<AvatarPickerReplyDataArgs> Data)
584 { 582 {
585 } 583 }
@@ -821,7 +819,8 @@ namespace OpenSim.Tests.Common
821 { 819 {
822 } 820 }
823 821
824 public virtual void SendXferPacket(ulong xferID, uint packet, byte[] data, bool isTaskInventory) 822 public virtual void SendXferPacket(ulong xferID, uint packet,
823 byte[] XferData, int XferDataOffset, int XferDatapktLen, bool isTaskInventory)
825 { 824 {
826 } 825 }
827 826
@@ -880,7 +879,7 @@ namespace OpenSim.Tests.Common
880 { 879 {
881 } 880 }
882 881
883 public virtual void SendRegionHandshake(RegionInfo regionInfo, RegionHandshakeArgs args) 882 public virtual void SendRegionHandshake()
884 { 883 {
885 if (OnRegionHandShakeReply != null) 884 if (OnRegionHandShakeReply != null)
886 { 885 {
@@ -1402,7 +1401,10 @@ namespace OpenSim.Tests.Common
1402 { 1401 {
1403 } 1402 }
1404 1403
1405 public void CheckViewerCaps() { } 1404 public uint GetViewerCaps()
1405 {
1406 return 0x1000;
1407 }
1406 1408
1407 } 1409 }
1408} 1410}
diff --git a/OpenSim/Tests/Common/Mock/TestLandChannel.cs b/OpenSim/Tests/Common/Mock/TestLandChannel.cs
index cb16f55..b5227aa 100644
--- a/OpenSim/Tests/Common/Mock/TestLandChannel.cs
+++ b/OpenSim/Tests/Common/Mock/TestLandChannel.cs
@@ -119,6 +119,6 @@ namespace OpenSim.Tests.Common
119 119
120 public void Join(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id) {} 120 public void Join(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id) {}
121 public void Subdivide(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id) {} 121 public void Subdivide(int start_x, int start_y, int end_x, int end_y, UUID attempting_user_id) {}
122 public void sendClientInitialLandInfo(IClientAPI remoteClient) { } 122 public void sendClientInitialLandInfo(IClientAPI remoteClient, bool overlay) { }
123 } 123 }
124} \ No newline at end of file 124} \ No newline at end of file