The usual steps you go with TDD and Visual Studio at the moment:
- Write test
- Stop and run tests
- Write code
- Stop and run tests
- Refactor code
- Stop and run tests
You can go with NCrunch and it look like:
- Write test
- Write code
- Refactor code
It intelligently takes responsibility for running automated tests so that you don't have to, and it gives you a huge amount of useful information about your tests (such as code coverage and performance metrics) inline in your IDE while you work.
I will give it a try with my current project.
No comments:
Post a Comment