Files
modernkeepass/ModernKeePassApp.Test/Mock/SettingsServiceMock.cs

19 lines
419 B
C#
Raw Permalink Normal View History

using System;
using ModernKeePass.Interfaces;
namespace ModernKeePassApp.Test.Mock
{
public class SettingsServiceMock : ISettingsService
{
public T GetSetting<T>(string property, T defaultValue = default(T))
{
return defaultValue;
}
public void PutSetting<T>(string property, T value)
{
throw new NotImplementedException();
}
}
}