Пример #1
0
        public void CreateFileWithGivenNameIfNotExists()
        {
            textFileWriter.SaveFile(dirPath + "tt.txt", "TDDS");

            Assert.True(File.Exists(dirPath + "tt.txt"));
            File.Delete(dirPath + "tt.txt");
        }