diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs index 5d8c79d..c821ca2 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/Tests/BasicCircuitTests.cs | |||
@@ -25,7 +25,10 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
28 | using NUnit.Framework; | 29 | using NUnit.Framework; |
30 | using OpenSim.Region.ClientStack; | ||
31 | using OpenSim.Region.ClientStack.LindenUDP; | ||
29 | 32 | ||
30 | namespace OpenSim.Region.ClientStack.LindenUDP.Tests | 33 | namespace OpenSim.Region.ClientStack.LindenUDP.Tests |
31 | { | 34 | { |
@@ -36,9 +39,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP.Tests | |||
36 | public class BasicCircuitTests | 39 | public class BasicCircuitTests |
37 | { | 40 | { |
38 | [Test] | 41 | [Test] |
39 | public void TestHello() | 42 | public void TestAddClient() |
40 | { | 43 | { |
41 | // Nowt here yet | 44 | IClientNetworkServer llUdpServer = new LLUDPServer(); |
45 | |||
46 | uint port = 666; | ||
47 | llUdpServer.Initialise(null, ref port, -1, false, new ClientStackUserSettings(), null, null); | ||
42 | } | 48 | } |
43 | } | 49 | } |
44 | } | 50 | } |