* Extend PacketHandlerTest to fire in a packet.

* Can't test result yet since the Client thread handles it with unpredictable timing
This commit is contained in:
Justin Clarke Casey
2009-01-12 18:45:03 +00:00
parent fb8faa8336
commit d4d2c19594
6 changed files with 46 additions and 19 deletions

View File

@@ -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; }
}
/// <summary>
/// Constructor
/// </summary>
@@ -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)
{