* Pop in a missing using statement without which UserProfileCacheServiceTests.cs fails on Windows (but not mono)
parent
04a07daa5b
commit
c9aabe2b90
|
@ -29,6 +29,7 @@ using System;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using NUnit.Framework.SyntaxHelpers;
|
using NUnit.Framework.SyntaxHelpers;
|
||||||
using OpenMetaverse;
|
using OpenMetaverse;
|
||||||
|
using OpenSim.Framework;
|
||||||
using OpenSim.Framework.Communications.Cache;
|
using OpenSim.Framework.Communications.Cache;
|
||||||
using OpenSim.Region.Communications.Local;
|
using OpenSim.Region.Communications.Local;
|
||||||
using OpenSim.Tests.Common.Mock;
|
using OpenSim.Tests.Common.Mock;
|
||||||
|
@ -64,7 +65,7 @@ namespace OpenSim.Framework.Communications.Tests
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Test moving a folder
|
/// Test requesting inventory for a user
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Test]
|
[Test]
|
||||||
public void TestRequestInventoryForUser()
|
public void TestRequestInventoryForUser()
|
||||||
|
@ -83,5 +84,13 @@ namespace OpenSim.Framework.Communications.Tests
|
||||||
CachedUserInfo userInfo = commsManager.UserProfileCacheService.GetUserDetails(userId);
|
CachedUserInfo userInfo = commsManager.UserProfileCacheService.GetUserDetails(userId);
|
||||||
Assert.That(userInfo.HasReceivedInventory, Is.True);
|
Assert.That(userInfo.HasReceivedInventory, Is.True);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Test moving an inventory folder
|
||||||
|
/// </summary>
|
||||||
|
[Test]
|
||||||
|
public void TestMoveFolder()
|
||||||
|
{
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue