InterviewSolution
Saved Bookmarks
| 1. |
Explain Test Driven Development (TDD) ? |
|
Answer» TDD is a methodology which says, write your tests first before you write your code. In TDD, tests drive your application design and development cycles. You do not do the check-in of your code into source control until all of your unit tests pass. |
|