In the NUnit Gui Runner, there are 6 tabs. I can write to the Console.Out by writing something like:
Console.WriteLine("This will end up in the Console.Out");
I can write to the Trace tab by writing something like:
System.Diagnostics.Trace.WriteLine("This will end up on the Trace tab");
But how do I write to the two other tabs, "Log" and "Console.Error"?