Esempio n. 1
0
 public void Setup()
 {
     _testFilePath          = FileTestHelpers.NewTempFilePath();
     _testFileDirectory     = Path.GetDirectoryName(_testFilePath);
     _testFileRollingBackup = Path.GetFileName(_testFilePath) + ".*-*.backup";
     _testFilePathBackup    = _testFilePath + ".backup";
     _fileBackupCreator     = new FileBackupCreator();
 }
Esempio n. 2
0
 public FileDataProviderWithRollingBackup(string filePath) : base(filePath)
 {
     _fileBackupCreator = new FileBackupCreator();
 }