diff options
author | Teravus Ovares (Dan Olivares) | 2009-08-11 20:32:05 -0400 |
---|---|---|
committer | Teravus Ovares (Dan Olivares) | 2009-08-11 20:32:05 -0400 |
commit | 2e9fc9a22b9718bb96934ed3b51ac0767f9ca4f3 (patch) | |
tree | b8a0cc747dd73da553d8d3504d3c842d9283be73 /OpenSim/Tests/Common/Mock | |
parent | Try something to help the tests complete. (diff) | |
parent | Fixes a race condition in EQ processing that was making EQs pop up again upon... (diff) | |
download | opensim-SC_OLD-2e9fc9a22b9718bb96934ed3b51ac0767f9ca4f3.zip opensim-SC_OLD-2e9fc9a22b9718bb96934ed3b51ac0767f9ca4f3.tar.gz opensim-SC_OLD-2e9fc9a22b9718bb96934ed3b51ac0767f9ca4f3.tar.bz2 opensim-SC_OLD-2e9fc9a22b9718bb96934ed3b51ac0767f9ca4f3.tar.xz |
Merge branch 'master' of ssh://MyConnection/var/git/opensim
Diffstat (limited to 'OpenSim/Tests/Common/Mock')
-rw-r--r-- | OpenSim/Tests/Common/Mock/TestInventoryService.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/Mock/TestInventoryService.cs b/OpenSim/Tests/Common/Mock/TestInventoryService.cs index cf1a3a9..0c19164 100644 --- a/OpenSim/Tests/Common/Mock/TestInventoryService.cs +++ b/OpenSim/Tests/Common/Mock/TestInventoryService.cs | |||
@@ -43,6 +43,21 @@ namespace OpenSim.Tests.Common.Mock | |||
43 | return folders; | 43 | return folders; |
44 | } | 44 | } |
45 | 45 | ||
46 | public InventoryFolderBase GetRootFolder(UUID userID) | ||
47 | { | ||
48 | return new InventoryFolderBase(); | ||
49 | } | ||
50 | |||
51 | public InventoryCollection GetFolderContent(UUID userID, UUID folderID) | ||
52 | { | ||
53 | return null; | ||
54 | } | ||
55 | |||
56 | public InventoryFolderBase GetFolderForType(UUID userID, AssetType type) | ||
57 | { | ||
58 | return null; | ||
59 | } | ||
60 | |||
46 | /// <summary> | 61 | /// <summary> |
47 | /// Returns a list of all the active gestures in a user's inventory. | 62 | /// Returns a list of all the active gestures in a user's inventory. |
48 | /// </summary> | 63 | /// </summary> |