Пример #1
0
 private void SetupFileStorage()
 {
     _testFileStorage = new TestFileStorage(new TestKp2aApp());
     _testCacheSupervisor = new TestCacheSupervisor();
     //_fileStorage = new CachingFileStorage(_testFileStorage, Application.Context.CacheDir.Path, _testCacheSupervisor);
     _fileStorage = new CachingFileStorage(_testFileStorage, "/mnt/sdcard/kp2atest_cache", _testCacheSupervisor);
     _fileStorage.ClearCache();
     File.WriteAllText(CachingTestFile, _defaultCacheFileContents);
 }