Add optional encoding to Touch()

This commit is contained in:
Keith Dahlby 2013-07-26 12:54:43 -05:00
Родитель bcc25cec6d
Коммит 14ab70eae9
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -218,7 +218,7 @@ namespace LibGit2Sharp.Tests.TestHelpers
};
}
protected static string Touch(string parent, string file, string content = null)
protected static string Touch(string parent, string file, string content = null, Encoding encoding = null)
{
string filePath = Path.Combine(parent, file);
string dir = Path.GetDirectoryName(filePath);
@ -226,7 +226,7 @@ namespace LibGit2Sharp.Tests.TestHelpers
Directory.CreateDirectory(dir);
File.WriteAllText(filePath, content ?? string.Empty, Encoding.ASCII);
File.WriteAllText(filePath, content ?? string.Empty, encoding ?? Encoding.ASCII);
return filePath;
}