aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-12-11 19:11:19 +0000
committerJustin Clarke Casey2008-12-11 19:11:19 +0000
commitc9aabe2b9015475b71b7f29da28110ee5eacc1e2 (patch)
tree55e17d3f0f1b845b3d12a2e65effcb3721aa9a26 /OpenSim/Framework
parentminor: Add request inventory test (diff)
downloadopensim-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 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/Communications/Tests/Cache/UserProfileCacheServiceTests.cs11
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;
29using NUnit.Framework; 29using NUnit.Framework;
30using NUnit.Framework.SyntaxHelpers; 30using NUnit.Framework.SyntaxHelpers;
31using OpenMetaverse; 31using OpenMetaverse;
32using OpenSim.Framework;
32using OpenSim.Framework.Communications.Cache; 33using OpenSim.Framework.Communications.Cache;
33using OpenSim.Region.Communications.Local; 34using OpenSim.Region.Communications.Local;
34using OpenSim.Tests.Common.Mock; 35using 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}