Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some basic unit tests in VS2010 that I'm currently running. I'd like to be able to add some additional information to the Test Result Details screen (When a unit test completes, right click on it in the Test Results screen, and select Test Result Details). Currently it just lists Common Results, and some standard information.

Common Results

Is there a way to include some additional values to test result? For example, PreCleanup, initialization, Test, Post Cleanup, etc?

share|improve this question

1 Answer

Apparently, anything written to the System.Diagnostics.Debug.WriteLine will be displayed on an Debug Trace Pane..

enter image description here

share|improve this answer
I typically use log4net in my code and then set up a DebugTraceAppender to show log output in the test result. – bryanbcook Feb 28 at 11:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.