I have a unit test in Visual Studio that I run by doing the standard right-click -> Run Selected Tests. I'm able to see all errors and output inside the unit test explorer window.
Is it possible to pop open a command window when I start the unit test to view data being printed via Console.WriteLine()? I'm creating a publisher/subscriber style application and normally I would open up two command prompts and run it via command line arguments. I'm basically trying to recreate that behavior but during the unit test execution. I.e., when the unit test creates a publisher, open a command window for it and display any information it prints, and do the same for whenever a subscriber is created.