Example #1
0
        public void Setup()
        {
            using (var sr = new StreamReader(@"..\..\..\..\..\unversioned\.syncconfig"))
            {
                var appId = sr.ReadLine();
                var restKey = sr.ReadLine();
                var masterKey = sr.ReadLine();

                _pf = new ParseFiles(appId, restKey, masterKey);
                _sut = new RemoteFileStore(appId, restKey, masterKey);
            }
        }
Example #2
0
 public RemoteFileStore(string parseAppId, string parseRestKey, string parseMasterKey)
 {
     _parseFiles = new ParseFiles(parseAppId, parseRestKey, parseMasterKey);
 }