Added new operations to mock inventory service in tests.

arthursv
Diva Canto 2009-08-11 13:16:53 -07:00
parent bf3f376b10
commit dae9a111aa
1 changed files with 15 additions and 0 deletions

View File

@ -43,6 +43,21 @@ namespace OpenSim.Tests.Common.Mock
return folders;
}
public InventoryFolderBase GetRootFolder(UUID userID)
{
return new InventoryFolderBase();
}
public InventoryCollection GetFolderContent(UUID userID, UUID folderID)
{
return null;
}
public InventoryFolderBase GetFolderForType(UUID userID, AssetType type)
{
return null;
}
/// <summary>
/// Returns a list of all the active gestures in a user's inventory.
/// </summary>