diff options
author | lbsa71 | 2009-02-12 09:53:12 +0000 |
---|---|---|
committer | lbsa71 | 2009-02-12 09:53:12 +0000 |
commit | 801da4346aeb3c08969c4845f5c595135a64470a (patch) | |
tree | 2f06e24c72e0d513c8e4c6aa9b75cd2c7b50f393 /OpenSim/Framework/Servers/Tests | |
parent | Thanks Kitto Flora for a patch that adds automatic min fly height to ODE - Ma... (diff) | |
download | opensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.zip opensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.tar.gz opensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.tar.bz2 opensim-SC_OLD-801da4346aeb3c08969c4845f5c595135a64470a.tar.xz |
* optimized usings.
Diffstat (limited to 'OpenSim/Framework/Servers/Tests')
-rw-r--r-- | OpenSim/Framework/Servers/Tests/OSHttpTests.cs | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/OpenSim/Framework/Servers/Tests/OSHttpTests.cs b/OpenSim/Framework/Servers/Tests/OSHttpTests.cs index fe553c9..3a297bf 100644 --- a/OpenSim/Framework/Servers/Tests/OSHttpTests.cs +++ b/OpenSim/Framework/Servers/Tests/OSHttpTests.cs | |||
@@ -31,23 +31,18 @@ using System.IO; | |||
31 | using System.Net; | 31 | using System.Net; |
32 | using System.Net.Sockets; | 32 | using System.Net.Sockets; |
33 | using System.Text; | 33 | using System.Text; |
34 | |||
35 | using HttpServer; | 34 | using HttpServer; |
36 | using HttpServer.Exceptions; | ||
37 | using HttpServer.FormDecoders; | 35 | using HttpServer.FormDecoders; |
38 | |||
39 | using NUnit.Framework; | 36 | using NUnit.Framework; |
40 | using NUnit.Framework.SyntaxHelpers; | 37 | using NUnit.Framework.SyntaxHelpers; |
41 | 38 | ||
42 | using OpenSim.Framework.Servers; | ||
43 | |||
44 | namespace OpenSim.Framework.Servers.Tests | 39 | namespace OpenSim.Framework.Servers.Tests |
45 | { | 40 | { |
46 | [TestFixture] | 41 | [TestFixture] |
47 | public class OSHttpTests | 42 | public class OSHttpTests |
48 | { | 43 | { |
49 | // we need an IHttpClientContext for our tests | 44 | // we need an IHttpClientContext for our tests |
50 | public class TestHttpClientContext: HttpServer.IHttpClientContext | 45 | public class TestHttpClientContext: IHttpClientContext |
51 | { | 46 | { |
52 | private bool _secured; | 47 | private bool _secured; |
53 | public bool Secured | 48 | public bool Secured |
@@ -68,7 +63,7 @@ namespace OpenSim.Framework.Servers.Tests | |||
68 | public void Send(byte[] buffer, int offset, int size) {} | 63 | public void Send(byte[] buffer, int offset, int size) {} |
69 | } | 64 | } |
70 | 65 | ||
71 | public class TestHttpRequest: HttpServer.IHttpRequest | 66 | public class TestHttpRequest: IHttpRequest |
72 | { | 67 | { |
73 | public bool BodyIsComplete | 68 | public bool BodyIsComplete |
74 | { | 69 | { |