FileImpl.cs
using System.IO; | |
namespace Tdd.FrameworkWrappers.Lib.FrameworkWrappers | |
{ | |
public class FileImpl : IFile | |
{ | |
public string ReadAllText(string filePath) | |
{ | |
return File.ReadAllText(filePath); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment