diff options
author | Justin Clarke Casey | 2008-12-11 19:11:19 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-12-11 19:11:19 +0000 |
commit | c9aabe2b9015475b71b7f29da28110ee5eacc1e2 (patch) | |
tree | 55e17d3f0f1b845b3d12a2e65effcb3721aa9a26 /OpenSim/Framework/Communications/Tests | |
parent | minor: Add request inventory test (diff) | |
download | opensim-SC_OLD-c9aabe2b9015475b71b7f29da28110ee5eacc1e2.zip opensim-SC_OLD-c9aabe2b9015475b71b7f29da28110ee5eacc1e2.tar.gz opensim-SC_OLD-c9aabe2b9015475b71b7f29da28110ee5eacc1e2.tar.bz2 opensim-SC_OLD-c9aabe2b9015475b71b7f29da28110ee5eacc1e2.tar.xz |
* Pop in a missing using statement without which UserProfileCacheServiceTests.cs fails on Windows (but not mono)
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs b/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs index 6fd9440..054c746 100644 --- a/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs +++ b/OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs | |||
@@ -29,6 +29,7 @@ using System; | |||
29 | using NUnit.Framework; | 29 | using NUnit.Framework; |
30 | using NUnit.Framework.SyntaxHelpers; | 30 | using NUnit.Framework.SyntaxHelpers; |
31 | using OpenMetaverse; | 31 | using OpenMetaverse; |
32 | using OpenSim.Framework; | ||
32 | using OpenSim.Framework.Communications.Cache; | 33 | using OpenSim.Framework.Communications.Cache; |
33 | using OpenSim.Region.Communications.Local; | 34 | using OpenSim.Region.Communications.Local; |
34 | using OpenSim.Tests.Common.Mock; | 35 | using OpenSim.Tests.Common.Mock; |
@@ -64,7 +65,7 @@ namespace OpenSim.Framework.Communications.Tests | |||
64 | } | 65 | } |
65 | 66 | ||
66 | /// <summary> | 67 | /// <summary> |
67 | /// Test moving a folder | 68 | /// Test requesting inventory for a user |
68 | /// </summary> | 69 | /// </summary> |
69 | [Test] | 70 | [Test] |
70 | public void TestRequestInventoryForUser() | 71 | public void TestRequestInventoryForUser() |
@@ -83,5 +84,13 @@ namespace OpenSim.Framework.Communications.Tests | |||
83 | CachedUserInfo userInfo = commsManager.UserProfileCacheService.GetUserDetails(userId); | 84 | CachedUserInfo userInfo = commsManager.UserProfileCacheService.GetUserDetails(userId); |
84 | Assert.That(userInfo.HasReceivedInventory, Is.True); | 85 | Assert.That(userInfo.HasReceivedInventory, Is.True); |
85 | } | 86 | } |
87 | |||
88 | /// <summary> | ||
89 | /// Test moving an inventory folder | ||
90 | /// </summary> | ||
91 | [Test] | ||
92 | public void TestMoveFolder() | ||
93 | { | ||
94 | } | ||
86 | } | 95 | } |
87 | } | 96 | } |