如何为 Resharper 或 TeamCity 测试运行程序设置 TraceOutputOptions

发布于 2025-01-03 16:58:59 字数 199 浏览 1 评论 0原文

我在我的应用程序中使用了大量的跟踪。我通过 app.config 将跟踪选项设置为在代码中包含 TraceOptions.DateTime。

但是当我通过 Resharper 或 Teamcity 运行单元测试时,我看不到日期时间。

如何为 Resharper 或 TeamCity NUnit 测试运行程序设置 TraceOutputOptions?

I am using lots of Tracing throughout my app. I have trace options set to include TraceOptions.DateTime either in code of via the app.config.

But when I run unit tests via Resharper or Teamcity I don't see the DateTime.

How can I set the TraceOutputOptions for the Resharper or TeamCity NUnit test runners?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

糖果控 2025-01-10 16:58:59

找到了这个基于代码的解决方案:

[SetUpFixture]
public class AssemblySetup
{
    [SetUp]
    public void Setup()
    {
        foreach (var listener in Trace.Listeners.Cast<TraceListener>())
        {
            listener.TraceOutputOptions = listener.TraceOutputOptions | TraceOptions.DateTime;
        }
    }
}

Found this code-based solution:

[SetUpFixture]
public class AssemblySetup
{
    [SetUp]
    public void Setup()
    {
        foreach (var listener in Trace.Listeners.Cast<TraceListener>())
        {
            listener.TraceOutputOptions = listener.TraceOutputOptions | TraceOptions.DateTime;
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文