using System; using System.Collections.Generic; using System.Linq; using System.Text; using Pithos.Interfaces; namespace Pithos.Core.Test { class MockSettings:IPithosSettings { public string PithosPath { get; set; } public string PithosSite { get; private set; } public string IconsPath { get; set; } public string UserName { get; set; } public string ApiKey { get; set; } public AccountsCollection Accounts { get; set; } public bool UseDefaultProxy { get; set; } public bool UseManualProxy { get; set; } public bool UseNoProxy { get; set; } public string ProxyServer { get; set; } public int ProxyPort { get; set; } public string ProxyUsername { get; set; } public string ProxyPassword { get; set; } public bool ProxyAuthentication { get; set; } public bool ExtensionsActivated { get; set; } public void Save() { } public void Reload() { } } }