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…)?
I’m running tests using the TestDriven.NET VS add-in, and the class library I’m testing
Share
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.