diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs index 7d1d238..29f0c20 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs | |||
@@ -42,8 +42,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
42 | [TestFixture] | 42 | [TestFixture] |
43 | public class BasicCircuitTests | 43 | public class BasicCircuitTests |
44 | { | 44 | { |
45 | [Test] | 45 | [SetUp] |
46 | public void TestAddClient() | 46 | public void Init() |
47 | { | 47 | { |
48 | try | 48 | try |
49 | { | 49 | { |
@@ -52,8 +52,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
52 | catch | 52 | catch |
53 | { | 53 | { |
54 | // I don't care, just leave log4net off | 54 | // I don't care, just leave log4net off |
55 | } | 55 | } |
56 | 56 | } | |
57 | |||
58 | [Test] | ||
59 | public void TestAddClient() | ||
60 | { | ||
57 | TestLLUDPServer testLLUDPServer = new TestLLUDPServer(); | 61 | TestLLUDPServer testLLUDPServer = new TestLLUDPServer(); |
58 | ClientStackUserSettings userSettings = new ClientStackUserSettings(); | 62 | ClientStackUserSettings userSettings = new ClientStackUserSettings(); |
59 | 63 | ||