TestDriven.NET AppDomain 中的 TraceSource
我正在使用 TestDriven.NET VS 加载项运行测试,并且我正在测试的类库是使用 TraceSource 进行检测的。 如何让 TraceSource 的输出显示在 Visual Studio 的“输出”窗口中? DefaultTraceListener 似乎工作不太正常。 我是否需要手动添加一个 ConsoleListener 或其他东西(男孩,每个类一个 TraceSource 会很乏味吗...)?
I'm running tests using the TestDriven.NET VS add-in, and the class library I'm testing is instrumented using TraceSource. How can I get the output of that TraceSource to show up in the Output window in Visual Studio? The DefaultTraceListener doesn't appear to be working quite right. Do I need to manually add a ConsoleListener or something (boy, would that be tedious with one TraceSource per class...)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MSDN 文档指出:
我没有使用过 TestDrivent.NET,所以我不知道为什么跟踪输出没有出现在您的输出窗口中,但您也许可以使用 DbgView 查看输出,因为它收集由 OutputDebugString 写入的输出。
The MSDN documentation states:
I haven't used TestDrivent.NET so I wouldn't know why the trace output isn't appearing in your Output window, but you might be able to use DbgView to view your output since it collects output written by OutputDebugString.