aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-01-12 18:45:03 +0000
committerJustin Clarke Casey2009-01-12 18:45:03 +0000
commitd4d2c1959481d6d5e04a646c0b34f954b1bc727d (patch)
tree1fc9425201a226b77805a4709200f5ded14738e4 /OpenSim/Tests
parent* Apply http://opensimulator.org/mantis/view.php?id=2913 (diff)
downloadopensim-SC_OLD-d4d2c1959481d6d5e04a646c0b34f954b1bc727d.zip
opensim-SC_OLD-d4d2c1959481d6d5e04a646c0b34f954b1bc727d.tar.gz
opensim-SC_OLD-d4d2c1959481d6d5e04a646c0b34f954b1bc727d.tar.bz2
opensim-SC_OLD-d4d2c1959481d6d5e04a646c0b34f954b1bc727d.tar.xz
* Extend PacketHandlerTest to fire in a packet.
* Can't test result yet since the Client thread handles it with unpredictable timing
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r--OpenSim/Tests/Common/Mock/TestClient.cs16
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestClient.cs b/OpenSim/Tests/Common/Mock/TestClient.cs
index b5d6f6b..41c2eb6 100644
--- a/OpenSim/Tests/Common/Mock/TestClient.cs
+++ b/OpenSim/Tests/Common/Mock/TestClient.cs
@@ -343,6 +343,14 @@ namespace OpenSim.Tests.Common.Mock
343 set { } 343 set { }
344 } 344 }
345 345
346 private uint m_circuitCode;
347
348 public uint CircuitCode
349 {
350 get { return m_circuitCode; }
351 set { m_circuitCode = value; }
352 }
353
346 /// <summary> 354 /// <summary>
347 /// Constructor 355 /// Constructor
348 /// </summary> 356 /// </summary>
@@ -753,14 +761,6 @@ namespace OpenSim.Tests.Common.Mock
753 { 761 {
754 } 762 }
755 763
756 private uint m_circuitCode;
757
758 public uint CircuitCode
759 {
760 get { return m_circuitCode; }
761 set { m_circuitCode = value; }
762 }
763
764 public void SendBlueBoxMessage(UUID FromAvatarID, String FromAvatarName, String Message) 764 public void SendBlueBoxMessage(UUID FromAvatarID, String FromAvatarName, String Message)
765 { 765 {
766 766