* minor: refactor out AddUser test setup to common method
parent
a9b1119e49
commit
9fa7264c73
|
@ -42,8 +42,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
|
||||||
[TestFixture]
|
[TestFixture]
|
||||||
public class BasicCircuitTests
|
public class BasicCircuitTests
|
||||||
{
|
{
|
||||||
[Test]
|
[SetUp]
|
||||||
public void TestAddClient()
|
public void Init()
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -52,8 +52,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
// I don't care, just leave log4net off
|
// I don't care, just leave log4net off
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestAddClient()
|
||||||
|
{
|
||||||
TestLLUDPServer testLLUDPServer = new TestLLUDPServer();
|
TestLLUDPServer testLLUDPServer = new TestLLUDPServer();
|
||||||
ClientStackUserSettings userSettings = new ClientStackUserSettings();
|
ClientStackUserSettings userSettings = new ClientStackUserSettings();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue