aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-24 19:10:25 +0000
committerJustin Clarke Casey2008-10-24 19:10:25 +0000
commit9fa7264c7372d37ee926436ae269768a8409f3e8 (patch)
tree45de1049350aabb48bd2424171f876dcd7a7212c /OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs
parentRemove a debug output dump (diff)
downloadopensim-SC_OLD-9fa7264c7372d37ee926436ae269768a8409f3e8.zip
opensim-SC_OLD-9fa7264c7372d37ee926436ae269768a8409f3e8.tar.gz
opensim-SC_OLD-9fa7264c7372d37ee926436ae269768a8409f3e8.tar.bz2
opensim-SC_OLD-9fa7264c7372d37ee926436ae269768a8409f3e8.tar.xz
* minor: refactor out AddUser test setup to common method
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs12
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