Regression Testing is a type of software testing that verifies that a code change, such as a bug fix or a new feature, has not adversely affected existing functionality. The goal of Regression Testing is to ensure that changes to the codebase do not introduce new bugs or reintroduce previously fixed ones.
Manual Regression Testing involves manually running a set of Test Cases. One common approach to Regression Testing is to create a Regression Test Suite, which is a collection of Test Cases that are run every time a code change is made. The tests in Test Suits focus on individual functions, how different components of the system work together and how the system behaves from the user’s perspective.
It is important to have a comprehensive Regression Test Suite that covers a wide range of scenarios and edge cases. This will help to ensure that the code is robust and reliable.
In addition to Regression Testing, it’s also important to conduct other types of testing such as Performance Testing, Security Testing, and Usability Testing. This will help to ensure that the system is performant, secure, and user-friendly.