1.

What do you understand by retesting and how is it different from data-driven testing?

Answer»

Retesting refers to the METHOD of executing the same test script using different input data every TIME. It helps in finding faults in the system when subjected to different inputs. The faults can be fixed and once again the system can be subjected to testing using the same SCRIPTS with the same or different inputs to check if it works fine.

Retesting is different from data-driven testing. This is because retesting is mostly a manual process that involves using a whole new data input set. Data-driven testing is an automated testing FRAMEWORK that has the test data and the scripts take the data and run it automatically.



Discussion

No Comment Found