如何写入 NUnit gui 运行程序的 Log 选项卡和 Console.Error 选项卡
在 NUnit Gui Runner 中,有 6 个选项卡。 我可以通过编写以下内容写入 Console.Out:
Console.WriteLine("This will end up in the Console.Out");
我可以通过编写以下内容写入“跟踪”选项卡:
System.Diagnostics.Trace.WriteLine("This will end up on the Trace tab");
但是如何写入其他两个选项卡“Log”和“Console.Error”?
In the NUnit Gui Runner, there are 6 tabs. I can write to the Console.Out by writing something like:
Console.WriteLine("This will end up in the Console.Out");
I can write to the Trace tab by writing something like:
System.Diagnostics.Trace.WriteLine("This will end up on the Trace tab");
But how do I write to the two other tabs, "Log" and "Console.Error"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要写入 Console.Error,请执行以下操作:
Console.Error.WriteLine("blah");
要写入日志,您需要在测试项目中配置 log4net,然后在项目的 .exe.config 文件中设置 log4net 附加程序。 实际上,使用 log4net 设置 NUnit 有点棘手,这里有一个入门指南:
http://www.softwarefrontier.com/2007/09/using-log4net-with-nunit.html
To write to Console.Error, you do this:
Console.Error.WriteLine("blah");
To write to the Log, you need to configure log4net in your test project, then setup a log4net appender in the .exe.config file for your project. NUnit is actually a little tricky to setup with log4net, here's a little guide to get started:
http://www.softwarefrontier.com/2007/09/using-log4net-with-nunit.html