On which test cases should regression testing be performed?

Editorial / Best Answer

mithr17  

  • Member Since Oct-2011 | Oct 17th, 2011


Re-testing is testing the failed test cases and the bugs that have been fixed in current build. Regression testing is done to make sure the "bug fixes" do not affect the surrounding code (features). So the test case selection really focuses on which feature were affected by bugs. Lets take an example: Suppose you are testing a banking application (everyone does online banking these days) and you found a bug in checking account feature. Say the bug is about amount not automatically adjusted after money is credited by State Bank (specifically) to checking account. When this bug is fixed, you need to run test cases pertaining to different type of checking account credits etc need to be run again even thought they have passed.

Showing Answers 1 - 16 of 16 Answers

S Rajesh Kumar

  • Sep 8th, 2006
 

Test cases with the status as "Fail" should go for regression testing.

  Was this answer useful?  Yes

Ashok Ganta

  • Sep 8th, 2006
 

High priority level test cases can be used for regression testing which covers the whole business functionality.

  Was this answer useful?  Yes

All the failed and passed test cases should be runned for Regression testing if there are no new features added to the lastly tested build

Code can break mainly for 2 reasons

1. Bug fix happen for the tested build (Run passed and Failed test cases only)

2. New features added to the existing build(run passed,failed and new test cases added for the newly added features

mithr17

  • Oct 17th, 2011
 

Re-testing is testing the failed test cases and the bugs that have been fixed in current build.

Regression testing is done to make sure the "bug fixes" do not affect the surrounding code (features). So the test case selection really focuses on which feature were affected by bugs.

Lets take an example: Suppose you are testing a banking application (everyone does online banking these days) and you found a bug in checking account feature. Say the bug is about amount not automatically adjusted after money is credited by State Bank (specifically) to checking account. When this bug is fixed, you need to run test cases pertaining to different type of checking account credits etc need to be run again even thought they have passed.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions