I\'m using xUnit with the ReSharper test runner and the xUnitContrib resharper plugin.
When I have a long-running test, I\'d like to be able to output some progress
ReSharper somehow removed the default listener in unit tests. To display text in the Output window, just add this line:
Debug.Listeners.Add(new DefaultTraceListener());