diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestAssetService.cs | 11 |
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 | { |