Our build process runs a series of integration tests that hit a web service. Each of these tests generates a unique identifier that is used by the web services to match log messages to service calls. The identifier is written to standard output during the tests.
This works great when running the tests locally using ReSharper, since it associates the standard output output to the individual test. However, when running the tests from the NUnit console application, the standard output output can only be written to the console, or a separate file from the results themselves, not the XML results file that is used by CruiseControl.NET to display the test results.
Is there a way to include standard output output inline in the XML results file to make it show up on the NUnit Details screen?