Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 NUnit,如果您在测试中添加 Debug.Print 语句,它们会出现在测试输出中。(至少他们在 ReSharper 单元测试窗口中这样做。)
当使用执行相同测试的 NAnt 构建文件时,这些 Debug.Print 语句不会出现。
如何将消息添加到单元测试中,这些消息将同时出现在 NUnit 输出和 NAnt 的构建日志输出中?
NUnit 3 在测试期间的记录方式是通过TestContext类。它有大量静态写入变体。每个都向测试结果发出一般内容。
TestContext
TestContext.Out产生一个TextWriter也可用于将日志记录信息发送到测试结果中。
TestContext.Out
TextWriter
Console.WriteLine()应该保留(至少适用于我的 NUnit 版本)。
Console.WriteLine()
也就是说,请考虑 - 每次您想要添加一些文本输出时 - 如何将其转换为带有消息的断言。你的测试会变得更好。