Sometimes when I'm writing unit tests, I want to debug the test and see the standard output (console output?) as I'm stepping through the code. In my case, my ORM is generating sql queries and showing them in stdout and I'd like to know what its generating.
I think I can't see the output because it's being directed to the test results window. Anyway, I'd like it better if I could see it in the output window while debugging, instead of waiting for the end of the test to see all the output.
Does anyone know how fix this?