What does regression test mean?

TddBddRegression Testing

Tdd Problem Overview


Could anyone explain the word regression test in an understandable way?

Tdd Solutions


Solution 1 - Tdd

Regression test is a test that is performed to make sure that previously working functionality still works, after changes elsewhere in the system. Wikipedia article is pretty good at explaining what it is.

Your unit tests are automatically regression tests, and that's one of their biggest advantages. Once those tests are written, they will be run in future, whenever you add new functionality or change existing functionality. You don't need to explicitly write regression tests.

Solution 2 - Tdd

Notwithstanding the old joke, "Congress" is not the opposite of "progress;" "regress" is. For your code to regress is for it to "move backward," typically meaning that some bad behavior it once had, which you fixed, has come back. A "regression" is the return of a bug (although there can be other interpretations). A regression test, therefore, is a test that validates that you have fixed the bug, and one that you run periodically to ensure that your fix is still in place, still working.

Solution 3 - Tdd

The word regression as coined by Francis Galton means

Regression: The act of going back

I.e. it is the phenomenon/technique in software testing to check any change / bug fixes hasn't impacted the existing functionality of the system. Thus the intent of regression testing is to ensure that a change, such as a bug fix should not result in another fault being uncovered in the application.

Regression Testing is required when

  • there is a change in requirements and code is modified according to the requirement
  • a new feature is added to the software
  • defects are fixed
  • a performance issue is fixed

Regression testing can be done both manually and automated.

These are some tools for the automation approach:

  • QTP
  • AdventNet QEngine
  • Regression Tester
  • vTest
  • Watir
  • Selenium
  • actiWate
  • Rational Functional Tester
  • SilkTest

Solution 4 - Tdd

During a regression test, testers run through your application testing features that were known to work in the previous build.

They look specifically for parts of the application that may not have been directly modified, but depend on (and could have residual bugs from) code that was modified.

Those bugs (ones caused by bugs in dependent code even though they were working before) are known as regressions (because the feature was working properly and now has a bug...and therefore, regressed).

Solution 5 - Tdd

Regression testing is a part of testing activity, which can be start after
modification has been made to check the reliability of each software released.
It's nothing but an impact analysis to check wheather it not affecting critical
area of the software.

Solution 6 - Tdd

  1. Do unit test
  2. Do integration test
  3. After (1) and (2) are passed, do regression test

In simple term, regression test is to repeat step (1) and (2) again.

Solution 7 - Tdd

Regression testing basically perform after completing of retesting. The main purpose of regression testing is to check the impact of modification. Whether still our application is acting stable.

Its necessary to perform a regression testing because sometimes it happened after retesting or while fixing bug developer fixed the bug and missed out something on other code or on dependent code

Solution 8 - Tdd

http://en.wikipedia.org/wiki/Regression_testing

Basically, test the code you've updated to make sure you haven't introduced new bugs and that the functionality still works as before.

Solution 9 - Tdd

Regression test:- IF THERE ANY Changes, delate,modification, up dings or adding in my application . In that case I have to know that my application works as it was working before.

Solution 10 - Tdd

> Regression test - Is a type of SW testing where we try to cover or check around the bug Original bug Fix.

>The functionality around the bug fix should not get changed or altered due to the Fix provided. Issues found in such process are called as Regression Issues.

Solution 11 - Tdd

Regression test is a test which enables us to find introduced bug by testing some areas in the software that we are testing. Introduced bug means a bug which is caused by the new changes made by the developer.

The key in the regression test is how we can effectively do the test by wisely deciding some areas which might be impacted by the changes since we can't test all the functionalities due to the time constraint (most of the time). 'Effective' in here means we can find bugs in a relatively short period of time.

Solution 12 - Tdd

In a simple way, Regression test is a test to make sure that the functionality of a system still works after a new code change has been introduced. It doesn't really have to be a thorough testing of the whole functionality (such as functional testing), only the areas that are considered to be impacted by the introduced code changes.

Solution 13 - Tdd

Regression testing means testing your software/website repeatedly. The main reason for it is to make sure there aren't any new bugs introduced.

Typically, regression tests will be automated, to reduce the cost of rerunning the test. The more high value test cases you can construct, the better. This is one example of a [Play and Record regression testing platform][1]

[1]: https://swif.club/?s=st0 "Swif.club"

Solution 14 - Tdd

Definition: - Regression testing is defined as a type of software testing to confirm that a recent program or code change has not harmfully affected existing features.

Regression Testing is Re-Testing to make sure that any modification done in a program will not affect the other functionality.

Regression testing is nothing but a full or partial selection of already executed test cases which are re-executed to ensure existing functionalities work fine.

We can do Regression Testing at all the level of testing like Unit Testing, Integration Testing and System Testing Level.

Need of Regression Testing

  1. Common code changed correctly or not.

  2. Correct or incorrect version control.

  3. Bug fixes perfectly.

  4. Bug fixes completely.

  5. Performance issue fix.

6.Change in requirements and code is modified according to the requirement.

  1. The new feature is added to the software perfectly.

For More Visit LINK

Solution 15 - Tdd

I like this definition of regression testing:

> [regression testing] tells you if a previously written and tested code broke after you’ve added an update or a fix > >[...] it helps you notice if you’ve unknowingly introduced bugs to your software while adding new code. New bugs of this kind are called regressions.

Basically, a regression is returning to a state where your application has bugs.

Solution 16 - Tdd

Regression testing is an activity performed to ensure the different functionalities of the system are still working as expected and the new functionalities added did not break any of the existing ones.

Secondly, you generally write automated tests or do manual testing to the above mentioned testing. It could be a combination of Unit/API/UI tests that are run on a daily basis. Regression testing can be performed in various phases of the SDLC, it all depends on the context.

Hopefully this gives an idea on what is regression testing.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionnever_had_a_nameView Question on Stackoverflow
Solution 1 - TddIgor ZevakaView Answer on Stackoverflow
Solution 2 - TddCarl ManasterView Answer on Stackoverflow
Solution 3 - TddQuality AssuranceView Answer on Stackoverflow
Solution 4 - TddJustin NiessnerView Answer on Stackoverflow
Solution 5 - Tddparag.raneView Answer on Stackoverflow
Solution 6 - TddX.CreatesView Answer on Stackoverflow
Solution 7 - TddPrateek chawlaView Answer on Stackoverflow
Solution 8 - TddStelliosView Answer on Stackoverflow
Solution 9 - Tddshawkat hossainView Answer on Stackoverflow
Solution 10 - TddSanyalView Answer on Stackoverflow
Solution 11 - TddPraditio AdityaView Answer on Stackoverflow
Solution 12 - TddJosh MView Answer on Stackoverflow
Solution 13 - TddPascalView Answer on Stackoverflow
Solution 14 - TddPreeti SharmaView Answer on Stackoverflow
Solution 15 - TddEli DavisView Answer on Stackoverflow
Solution 16 - TddRaj SubrameyerView Answer on Stackoverflow