2017-12-01 17:59:38 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using ModernKeePass.Interfaces;
|
|
|
|
|
using Windows.Storage;
|
|
|
|
|
|
|
|
|
|
namespace ModernKeePassApp.Test.Mock
|
|
|
|
|
{
|
2018-02-23 18:09:21 +01:00
|
|
|
|
class RecentServiceMock : IRecentService
|
2017-12-01 17:59:38 +01:00
|
|
|
|
{
|
|
|
|
|
public int EntryCount => 0;
|
|
|
|
|
|
|
|
|
|
public void Add(IStorageItem file, string metadata)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-04 12:20:05 +01:00
|
|
|
|
public void ClearAll()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-01 17:59:38 +01:00
|
|
|
|
public ObservableCollection<IRecentItem> GetAllFiles(bool removeIfNonExistant = true)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Task<IStorageItem> GetFileAsync(string token)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|