aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs
diff options
context:
space:
mode:
authorlbsa712009-05-13 17:11:53 +0000
committerlbsa712009-05-13 17:11:53 +0000
commit40e95cab02b125a6c9ec7e90cab94c94b201f021 (patch)
tree6c77dce02a24ee061cf936f95faca13b41759fbe /OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs
parentDisabling WebFetchInventoryDescendents CAPs for the time being as it (diff)
downloadopensim-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 '')
-rw-r--r--OpenSim/Tests/Common/Mock/TestOSHttpResponse.cs13
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 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using OpenSim.Framework.Servers.HttpServer;
5
6namespace 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}