From d4d2c1959481d6d5e04a646c0b34f954b1bc727d Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Mon, 12 Jan 2009 18:45:03 +0000 Subject: * Extend PacketHandlerTest to fire in a packet. * Can't test result yet since the Client thread handles it with unpredictable timing --- OpenSim/Tests/Common/Mock/TestClient.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'OpenSim/Tests/Common') 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 set { } } + private uint m_circuitCode; + + public uint CircuitCode + { + get { return m_circuitCode; } + set { m_circuitCode = value; } + } + /// /// Constructor /// @@ -753,14 +761,6 @@ namespace OpenSim.Tests.Common.Mock { } - private uint m_circuitCode; - - public uint CircuitCode - { - get { return m_circuitCode; } - set { m_circuitCode = value; } - } - public void SendBlueBoxMessage(UUID FromAvatarID, String FromAvatarName, String Message) { -- cgit v1.1