| 1. |
What do you mean by Test Driven Development (TDD)? |
|
Answer» TDD is an abbreviation that stands for Test-Driven Development. This is a development practice in which the test CASES are created first, followed by the code that underpins the test cases. TDD may also be used to construct automation testing. TDD takes longer to develop due to the fact that it finds fewer FLAWS. The TDD development practice has increased the quality of code, which is more reusable and flexible as a result. TDD also aids developers in achieving high test COVERAGE, ranging from 90% to 100%. The sole disadvantage of TDD for developers is that they must build test cases before PRODUCING code. The following is a list of the TDD methodology's basic six-step process:
|
|