* Pop in a missing using statement without which UserProfileCacheServiceTests.cs fails on Windows (but not mono)

This commit is contained in:
Justin Clarke Casey
2008-12-11 19:11:19 +00:00
parent 04a07daa5b
commit c9aabe2b90

View File

@@ -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
}
/// <summary>
/// Test moving a folder
/// Test requesting inventory for a user
/// </summary>
[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);
}
/// <summary>
/// Test moving an inventory folder
/// </summary>
[Test]
public void TestMoveFolder()
{
}
}
}