Tag: tdd
TDD – Test Driven Development
TDD or Test Driven Development is related to the test-first programming concepts of extreme programming. Test driven development where you write test before you develop a final code for your application. Life cycle of test-driven development: Write a test Run the written test Write code that corrects the failing test Clean up your code Go to step 1.