Fixing unit tests compilation

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros
2013-03-04 11:58:35 -08:00
parent 8bc500e785
commit 6f98cfb026

View File

@@ -210,6 +210,10 @@ namespace Orchard.Tests.Modules.Media.Services {
SavedStreams = new List<string>();
}
public bool FileExists(string path) {
throw new NotImplementedException();
}
public string GetPublicUrl(string path) {
return FileSystemStorageProvider.GetPublicUrl(path);
}
@@ -222,6 +226,10 @@ namespace Orchard.Tests.Modules.Media.Services {
throw new NotImplementedException();
}
public bool FolderExists(string path) {
throw new NotImplementedException();
}
public IEnumerable<IStorageFolder> ListFolders(string path) {
return ListFoldersPredicate(path);
}