0% found this document useful (0 votes)
42 views1 page

Test Driven Development

Uploaded by

kourmuskaan11
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
42 views1 page

Test Driven Development

Uploaded by

kourmuskaan11
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Test Driven Development

Test Driven Development is the process in which test cases are written before the code that
validates those cases.

 It depends on repetition of a very short development cycle.

Test driven Development is a technique in which automated Unit test are used to drive the design
and free decoupling of dependencies.

The following sequence of steps is generally followed:

Add a test – Write a test case that describe the function completely. In order to make the test cases
the developer must understand the features and requirements using user stories and use cases.

Run all the test cases and make sure that the new test case fails

.Write the code that passes the test case

Run the test cases

Benefits

TDD have very short development lifecycle.

TDD ensures that your application actually meets requirements defined for it.

Test driven development act as a safety net against the bugs.

You might also like