diff options
author | Justin Clarke Casey | 2008-10-24 19:10:25 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-10-24 19:10:25 +0000 |
commit | 9fa7264c7372d37ee926436ae269768a8409f3e8 (patch) | |
tree | 45de1049350aabb48bd2424171f876dcd7a7212c /OpenSim/Region/ClientStack/LindenUDP/Tests | |
parent | Remove a debug output dump (diff) | |
download | opensim-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 'OpenSim/Region/ClientStack/LindenUDP/Tests')
-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 | ||