是否有一个使用SystemInterface的CSV Writer NuGet.而不是System.IO

本文关键字:NuGet IO System Writer CSV 有一个 SystemInterface 是否 | 更新日期: 2023-09-27 18:03:02

我开始使用Josh Close的CsvHelper,但它使用System.IO。TextWriter,而不是SystemInterface.IO。我希望能够单元测试我的代码,而无需实际创建文件。有人知道一个类似的助手应用程序,使用SystemInterface.IO?

谢谢!

是否有一个使用SystemInterface的CSV Writer NuGet.而不是System.IO

由于CsvHelper类实现接口,因此实际上可以模拟那些

public class CsvReader : ICsvReader
public class CsvWriter : ICsvWriter
etc.

见:https://github.com/JoshClose/CsvHelper/tree/master/src/CsvHelper