Is anyone doing "real" TDD with Visual-C++, and if yes, how do they do it?
- by Martin
Test Driven Development implies writing the test before the code and following a certain cycle:
Write Test
Check Test (run)
Write Production Code
Check Test (run)
Clean up Production Code
Check test (run)
As far as I'm concerned, this is only possible if your development solution allows you to very quickly switch between the production and test…