如何写入NUnit gui runner的Log选项卡和Console.Error选项卡
在NUnit Gui Runner中,有6个选项卡。 我可以写入Console.Out写一些类似于:
Console.WriteLine("This will end up in the Console.Out");
我可以通过写下以下内容来写入Trace选项卡:
System.Diagnostics.Trace.WriteLine("This will end up on the Trace tab");
但是如何写入其他两个选项卡“Log”和“Console.Error”?
要写入Console.Error,请执行以下操作:
Console.Error.WriteLine( “嗒嗒”);
要写入日志,您需要在测试项目中配置log4net,然后在项目的.exe.config文件中设置log4net appender。 使用log4net设置NUnit实际上有点棘手,这里有一个入门指南:
https://www.softwarefrontier.com/2007/09/using-log4net-with-nunit.html
上述就是C#学习教程:如何写入NUnit gui runner的Log选项卡和Console.Error选项卡分享的全部内容,如果对大家有所用处且需要了解更多关于C#学习教程,希望大家多多关注—计算机技术网(www.ctvol.com)!
本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。
ctvol管理联系方式QQ:251552304
本文章地址:https://www.ctvol.com/cdevelopment/1031630.html