aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/Mock/TestAssetService.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2009-11-11 18:46:04 +0000
committerJustin Clark-Casey (justincc)2009-11-11 18:46:04 +0000
commit00102e73a657e8a30b323ef68e7cba073c369197 (patch)
tree1f7a1bd8bd4c995a7297516086b1417cce5db183 /OpenSim/Tests/Common/Mock/TestAssetService.cs
parentminor: remove some mono compiler warnings (diff)
downloadopensim-SC_OLD-00102e73a657e8a30b323ef68e7cba073c369197.zip
opensim-SC_OLD-00102e73a657e8a30b323ef68e7cba073c369197.tar.gz
opensim-SC_OLD-00102e73a657e8a30b323ef68e7cba073c369197.tar.bz2
opensim-SC_OLD-00102e73a657e8a30b323ef68e7cba073c369197.tar.xz
Add basic new uuid gatherer tests to check behaviour when the gather seed is a missing asset
Diffstat (limited to 'OpenSim/Tests/Common/Mock/TestAssetService.cs')
-rw-r--r--OpenSim/Tests/Common/Mock/TestAssetService.cs11
1 files changed, 8 insertions, 3 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestAssetService.cs b/OpenSim/Tests/Common/Mock/TestAssetService.cs
index 317ec06..ff75d86 100644
--- a/OpenSim/Tests/Common/Mock/TestAssetService.cs
+++ b/OpenSim/Tests/Common/Mock/TestAssetService.cs
@@ -39,9 +39,14 @@ namespace OpenSim.Tests.Common.Mock
39 { 39 {
40 private readonly Dictionary<string, AssetBase> Assets = new Dictionary<string, AssetBase>(); 40 private readonly Dictionary<string, AssetBase> Assets = new Dictionary<string, AssetBase>();
41 41
42 public TestAssetService(IConfigSource config) 42 public TestAssetService() {}
43 { 43
44 } 44 /// <summary>
45 /// This constructor is required if the asset service is being created reflectively (which is the case in some
46 /// tests).
47 /// </summary>
48 /// <param name="config"></param>
49 public TestAssetService(IConfigSource config) {}
45 50
46 public AssetBase Get(string id) 51 public AssetBase Get(string id)
47 { 52 {