1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-08 16:20:40 +02:00

Add resources for regression testing (#8482)

The QA roadmap does not have any resources for Regression Testing. I have added three resources for it.
This commit is contained in:
Sepand
2025-04-11 14:17:50 +03:30
committed by GitHub
parent 6dd8f29bff
commit c683db2757

View File

@@ -1,3 +1,9 @@
# Regression Testing
Regression Testing is a type of software testing to confirm that a recent program or code change has not adversely affected existing features. Regression testing is a black box testing technique. Test cases are re-executed to check the previous functionality of the application is working fine and that the new changes have not produced any bugs.
Regression Testing is a type of software testing to confirm that a recent program or code change has not adversely affected existing features. Regression testing is a black box testing technique. Test cases are re-executed to check the previous functionality of the application is working fine and that the new changes have not produced any bugs.
Visit the following resources to learn more:
- [@article@What is Regression Testing?](https://www.guru99.com/regression-testing.html)
- [@article@What is Regression Testing? Definition, Tools and Examples](https://katalon.com/resources-center/blog/regression-testing)
- [@video@What is Regression Testing? A Software Testing FAQ - Why? How? When?](https://www.youtube.com/watch?v=xmQuLTarGI4)