Questions tagged [regression-testing]

Regression testing is a form of software testing that focuses on retesting past fixed bugs to verify that recent changes to the software have not reactivated the old bugs.

Regression testing is a form of software testing that focuses on retesting past fixed bugs to verify that recent changes to the software have not reactivated the old bugs. A software build in which old bugs resurface is said to have "regressed", in the sense that the software has taken a step backwards on the project completion timeline. Regression testing is typically done concurrently with unit testing, integration testing and systems testing and may be incorporated as a part of each of those testing phases.

223 questions
3
votes
3 answers

How can I get pg_regress?

From online documentation, it seems that that there is a pg_regress program/component for regression tests. REGRESS_OPTS additional switches to pass to **pg_regress** I can do simple regression tests (under postgresql coming from Ubuntu 16.04…
thor
  • 21,418
  • 31
  • 87
  • 173
3
votes
0 answers

What are popular ways to pre-populate the database for Selenium testing?

If I have a test that requires X widgets as a precondition, I'd like to avoid the tedious process of making X widgets in the test through the front-end. The main alternatives appear to be either having a stated DB dump that is loaded for each test…
dhackner
  • 2,942
  • 2
  • 20
  • 23
3
votes
3 answers

Java regression testing (with AWT involved) possible without stealing desktop focus?

I've got regression tests of a Java system that don't bring up any graphical elements but do make use of the AWT event thread. Is there any way I can set things up to run this test suite in the background on my workstation without it constantly…
Joshua Goldberg
  • 5,059
  • 2
  • 34
  • 39
3
votes
1 answer

What is the definition of different regression bugs in regression test for a software?

there are 3 regression bugs while doing a regression test for a software. "local","unmasked" and "remote". Does any one know the definition of each? thanks
Hossein
  • 40,161
  • 57
  • 141
  • 175
3
votes
3 answers

Managing regression

I'm an impulsive coder by nature and have started learning the virtue of patience the hard way in programming. One of the areas I fare badly is when I'm modifying existing code. If I don't have all the details laid out before me I invariably miss…
Sidharth Panwar
  • 4,606
  • 6
  • 27
  • 36
3
votes
1 answer

Any suggestions about how jmeter can be used to do regression testing for page load times

I am thinking to put automated regression tests in place for page load times. We have few deployment scenarios and I think we could use jmeter with Jenkins/hudson integration, but I am not sure how to go about it and what are the best practices to…
Manish Sapariya
  • 3,575
  • 3
  • 25
  • 34
3
votes
4 answers

Numerical regression testing

I'm working on a scientific computing code (written in C++), and in addition to performing unit tests for the smaller components, I'd like to do regression testing on some of the numerical output by comparing to a "known-good" answer from previous…
Seth Johnson
  • 14,762
  • 6
  • 59
  • 85
2
votes
2 answers

Regression testing in open source projects?

I am currently doing a lot of regression testing at my job. And like I want to look at some of the best code in the world for regression testing (i.e. Open source). So basically list open source projects that you think show good examples of…
kthakore
  • 1,566
  • 3
  • 17
  • 32
2
votes
3 answers

Performance Testing

We are developing automated regression tests using VMWare and NUnit. We have divided tests into steps and now I would like to see each step be examined for performance regression. Simply timing the tests, as NUnit does, does not seem reliable. I…
Adam Driscoll
  • 9,395
  • 9
  • 61
  • 104
2
votes
3 answers

Is it bad practice to remove and combine regression tests to speed up testing?

I'm working on an app that integrates with a 3rd party web service. I currently have separate integration / regression tests that call the web service to do the following: Modify Policy - Add Vehicle Modify Policy - Remove Vehicle Modify Policy -…
2
votes
1 answer

How to visual regression testing of Storybook with addon-knobs?

I'm examining a method for visual regression testing of nearly 1,000 components in a React project. And I'm thinking of using Storybook and BackstopJS to realize it, because many components were already implemented on the Storybook, I thought that I…
2
votes
2 answers

How to run TestCafe tool scripts using particular grouping - smoke, regression, etc.? What would be the proper syntax of cmd?

I'm trying to find the best way of How to run TestCafe tool scripts using particular grouping - smoke, regression, etc.? What would be the proper syntax of cmd? WE have script with fixture and think to use it for grouping.All I need to find out the…
2
votes
1 answer

How to run a profiler with automated regression test suit on AWS

I have started a new project and have a few regression tests written using Karate (more will be added with new features). I also have an automated build on Jenkins that runs this regression suite on an AWS instance. I would like to have a profiler…
2
votes
1 answer

how to run regression tests with jenkins

Is it possible to run regression tests with Jenkins? (I am not talking about Unit Tests). Regression tests in my company are some VB scripts (recorded user action in a txt file and then compared to an existing file). We usually automatically run…
2
votes
2 answers

Set Yii controller dynamically in unit-test

I'm running some unit-tests using PHPUnit, and hack my application pretty hard in those tests (no other way, old code-base). Some parts of the code-base use Yii::app()->getController()->createUrl(...); but in this case, there is no controller, so…
Olle Härstedt
  • 3,799
  • 1
  • 24
  • 57