views:

28

answers:

1

I want to output some additional information about a test run that I can quickly visually review. It doesn't affect the outcome of the test.

I am familiar with Assert.Inconclusive(String) but I want the test to pass/fail on it's own.

A: 

In my opinion, you would do well to use Trace.Write() to put out informational messages before calling your Assert methods. This is really a matter of preference, but Trace.Write() seems like the tool for that job.

Tim Hoolihan