Statistics
| Branch: | Revision:

root / trunk / Pithos.Core.Test / MockSettings.cs @ eeee29e3

History | View | Annotate | Download (874 Bytes)

1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using Pithos.Interfaces;
6

    
7
namespace Pithos.Core.Test
8
{
9
    class MockSettings:IPithosSettings
10
    {
11
        public string PithosPath { get; set; }
12

    
13
        public string IconsPath { get; set; }
14
        public string UserName { get; set; }
15
        public string ApiKey { get; set; }
16

    
17
        public AccountsCollection Accounts { get; set; }
18

    
19

    
20

    
21
        public string ProxyServer { get; set; }
22

    
23

    
24
        public string ProxyPort { get; set; }
25

    
26

    
27
        public string ProxyUsername { get; set; }
28

    
29

    
30
        public string ProxyPassword { get; set; }
31

    
32

    
33
        public bool ProxyAuthentication { get; set; }
34

    
35
        public bool ExtensionsActivated { get; set; }
36
        public void Save()
37
        {
38
            
39
        }
40

    
41
        public void Reload()
42
        {
43
            
44
        }
45
    }
46
}