From ec07e1aad6fb3d28fcf4a3eca0becf4e0e209965 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Mon, 16 Feb 2009 18:33:05 +0000 Subject: * Iniital inventory archive test code. Doesn't actually do any testing yet --- OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'OpenSim/Tests/Common/Mock') diff --git a/OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs b/OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs index 566d8d2..9b92421 100644 --- a/OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs +++ b/OpenSim/Tests/Common/Mock/TestCommunicationsManager.cs @@ -59,6 +59,10 @@ namespace OpenSim.Tests.Common.Mock m_userDataPlugin = new TestUserDataPlugin(); m_inventoryDataPlugin = new TestInventoryDataPlugin(); + SQLAssetServer assetService = new SQLAssetServer(new TestAssetDataPlugin()); + IAssetCache ac = new AssetCache(assetService); + m_assetCache = ac; + LocalInventoryService lis = new LocalInventoryService(); lis.AddPlugin(m_inventoryDataPlugin); m_interServiceInventoryService = lis; -- cgit v1.1