如何写入 NUnit gui 运行程序的 Log 选项卡和 Console.Error 选项卡

发布于 2024-07-19 15:48:51 字数 323 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光与爱终年不遇 2024-07-26 15:48:51

要写入 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文