difference between data driven testing and retesting

Solutions on MaxInterview for difference between data driven testing and retesting by the best coders in the world

showing results for - "difference between data driven testing and retesting"
Charlotte
14 Jul 2017
1RETESTING
2It's a testing type to check whether bug which
3founded is fixed or not.
4
5DATA DRIVEN TESTING
6Whenever a functionality or a module in an app
7requires testing with multiple sets of data (Parametrization),
8Multiple inputs then we need to perform data driven testing and
9automation.
10These scenarios are one of the things That must be automated.
11I would do it by seperating Test data from code and stored into external
12sources like
13Cucumber Examples table, Excel files, CSV files, Database.
14Data driven testing has lots of benefits like
15More organized, Data centralized, and so on