* minor: initialize udp server in unit test

This commit is contained in:
Justin Clarke Casey
2008-10-09 18:00:38 +00:00
parent 919d907a3d
commit 285ae803e2
3 changed files with 10 additions and 8 deletions

View File

@@ -25,7 +25,10 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
using System;
using NUnit.Framework;
using OpenSim.Region.ClientStack;
using OpenSim.Region.ClientStack.LindenUDP;
namespace OpenSim.Region.ClientStack.LindenUDP.Tests
{
@@ -36,9 +39,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
public class BasicCircuitTests
{
[Test]
public void TestHello()
public void TestAddClient()
{
// Nowt here yet
IClientNetworkServer llUdpServer = new LLUDPServer();
uint port = 666;
llUdpServer.Initialise(null, ref port, -1, false, new ClientStackUserSettings(), null, null);
}
}
}