How Do You Identify a Regression Test Case?
During software development, code changes are very common, but these frequent changes can unknowingly affect the other part/feature/functionality of the software. To ensure high-quality software, regression testing is needed. There are two ways (manual and automated) in which regression testing can be done. Let’s now understand these two ways of regression testing with the help of examples. What is a regression test? Regression testing is an important software testing method that involves re-running functional and non-functional tests to ensure that any new code change in the software does not affect the existing feature/functionality of the software. Manual regression test Manual regression testing is a process where testers manually draft the test cases and execute the test. Example of manual regression testing: Consider a scenario, where the login feature is not working on a login page and a tester reports a bug stating that the login functionality is not worki...