diff options
author | lbsa71 | 2009-05-13 17:11:53 +0000 |
---|---|---|
committer | lbsa71 | 2009-05-13 17:11:53 +0000 |
commit | 40e95cab02b125a6c9ec7e90cab94c94b201f021 (patch) | |
tree | 6c77dce02a24ee061cf936f95faca13b41759fbe /OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs | |
parent | Disabling WebFetchInventoryDescendents CAPs for the time being as it (diff) | |
download | opensim-SC_OLD-40e95cab02b125a6c9ec7e90cab94c94b201f021.zip opensim-SC_OLD-40e95cab02b125a6c9ec7e90cab94c94b201f021.tar.gz opensim-SC_OLD-40e95cab02b125a6c9ec7e90cab94c94b201f021.tar.bz2 opensim-SC_OLD-40e95cab02b125a6c9ec7e90cab94c94b201f021.tar.xz |
* Added some more tests to the GetAssetStreamHandlers
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs b/OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs new file mode 100644 index 0000000..d9c96f4 --- /dev/null +++ b/OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs | |||
@@ -0,0 +1,13 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using OpenSim.Framework.Servers.HttpServer; | ||
5 | |||
6 | namespace OpenSim.Tests.Common.Mock | ||
7 | { | ||
8 | public class TestOSHttpResponse : OSHttpResponse | ||
9 | { | ||
10 | public override int StatusCode { get; set; } | ||
11 | public override string ContentType { get; set; } | ||
12 | } | ||
13 | } | ||