InterviewSolution
Saved Bookmarks
| 1. |
Difference between progressive and regression testing in software testing |
|
Answer» sive testing ALSO known as incremental testing is used to test MODULES one after the other. When an application with a hierarchy such as parent-child module is being tested, the related modules would need to be tested first.This progressive approach testing method has three approaches:Top-down ApproachBottom-up ApproachHybrid ApproachRegression testing: Testing your software application when it undergoes a code change to ENSURE that the new code has not affected other parts of the software. |
|