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