public FileSystemBuilder File(TestFile value) { _fileSystem.Files.Add(value.FilePath,value); return this; }
public FileBuilder() { _file = new TestFile(); }
public FileSystemBuilder ActualFile(TestFile value) { _fileSystem.Files.Add(value.FilePath, value); _fileSystem.ActualFile = value; return this; }
public TestFileSystem() { _files = new Dictionary<string, TestFile>(); _actualFile = new TestFile(); }
public FileSystemBuilder File(TestFile value) { _fileSystem.Files.Add(value.FilePath, value); return(this); }
public TestFileSystem() { _files = new Dictionary <string, TestFile>(); _actualFile = new TestFile(); }
public FileSystemBuilder ActualFile(TestFile value) { _fileSystem.Files.Add(value.FilePath, value); _fileSystem.ActualFile = value; return(this); }