设计读取文件的服务
概念概述
在文件系统上存储模板文本文件。将文本文件读入模板服务,获取字符串,发送电子邮件。
到目前为止,我有 2 个服务:
- ITemplateService - 这是模板引擎(接受模型和模板字符串)。
- IEmailService - 发送电子邮件。
我可以举个例子来说明文件读取器服务的外观、如何模拟或对其进行单元测试吗?谢谢。
我基本上想将路径/文件名传递给方法并让它读取文件并返回字符串。
Conceptual Overview
Store templated text files on the file system. Read text file into a templating service, get the string, send the email.
I have 2 services so far:
- ITemplateService - this is the templating engine (accepts model and the string for templating).
- IEmailService - Send email.
Can I have an example of how a file reader service would look, how I can mock or unit test it. Thanks.
I basically want to pass a path/filename to a method and let it read the file and return a string.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
System.IO.File.ReadAllText(字符串文件路径) 返回内容。
System.IO.File.ReadAllText(string filePath) returns the contents.
您还可以查看邮政。
You may also checkout Postal.