From c9aabe2b9015475b71b7f29da28110ee5eacc1e2 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 11 Dec 2008 19:11:19 +0000 Subject: [PATCH] * Pop in a missing using statement without which UserProfileCacheServiceTests.cs fails on Windows (but not mono) --- .../Tests/Cache/UserProfileCacheServiceTests.cs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs b/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs index 6fd94406aa..054c746ad2 100644 --- a/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs +++ b/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs @@ -29,6 +29,7 @@ using System; using NUnit.Framework; using NUnit.Framework.SyntaxHelpers; using OpenMetaverse; +using OpenSim.Framework; using OpenSim.Framework.Communications.Cache; using OpenSim.Region.Communications.Local; using OpenSim.Tests.Common.Mock; @@ -64,7 +65,7 @@ namespace OpenSim.Framework.Communications.Tests } /// - /// Test moving a folder + /// Test requesting inventory for a user /// [Test] public void TestRequestInventoryForUser() @@ -83,5 +84,13 @@ namespace OpenSim.Framework.Communications.Tests CachedUserInfo userInfo = commsManager.UserProfileCacheService.GetUserDetails(userId); Assert.That(userInfo.HasReceivedInventory, Is.True); } + + /// + /// Test moving an inventory folder + /// + [Test] + public void TestMoveFolder() + { + } } }