I just started testing xUnit.net, but it doesn\'t seem to capture any output (Console, Debug, Trace), as I would have expected.
Is that possible? I am using a sample
There is a solution as found here: https://xunit.codeplex.com/discussions/211566
Simply add this to your constructor or method where you want debugging output:
Debug.Listeners.Add(new DefaultTraceListener());