in reply to Re: graphical debugger, in a unit-test environment?
in thread graphical debugger, in a unit-test environment?

I agree that debugging and testing are very different activities. Still, tests, themselves, may need to be debugged.

As for my comment about using print statements to debug tests, often understanding a test failure involves co-debugging the application and test at the same time. For that matter, the initial debugging of the tests is almost certainly co-debugging with the application. Therefore, having the tests output debugging information helps both with testing the application and with debugging the tests.

  • Comment on Re^2: graphical debugger, in a unit-test environment?