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
7
votes
1 answer

Automated testing of VBA UserForms- tools and/or techniques?

I am looking to start automated regression testing on a fairly large Excel add-in that revolves around a GUI composed of a few modal UserForms with standard controls. The main problem is that most of the automated testing tools I have looked into…
MLdeS
  • 374
  • 2
  • 7
7
votes
3 answers

Good way to capture/replay sessions from Apache Log?

For performance testing, I would like to capture some traffic from a production server and use that as a basis to replay the request to a test server in order to simulate a realistic load in our development environment. These are all stateless…
Mark Harrison
  • 297,451
  • 125
  • 333
  • 465
7
votes
6 answers

CSS regression tool?

I'm looking for a visual regression testing tool for CSS refactoring and see whether or not there are any unintended cascading behavior in a website. Ideally, the tool that can crawl a website (even locally) and grab snapshots of each page and…
ronaldwidha
  • 1,345
  • 2
  • 12
  • 24
6
votes
2 answers

VHDL test results into jUnit (or other Jenkins-recognized) format

I'm setting up automated regression testing for an FPGA project, almost exactly as described here: Continuous integration of complex reconfigurable systems Now I want to get test results (from VHDL REPORT statements in ModelSim simulation) to…
Ben Voigt
  • 277,958
  • 43
  • 419
  • 720
6
votes
2 answers

R - Testing equivalence of coefficients in multivariate multiple regression

I'm trying to conduct a multivariate multiple regression analysis. Fortunately, I've found an excellent page demonstrating how to do so in Stata: http://www.ats.ucla.edu/stat/stata/dae/mvreg.htm The issue is that I'm using R, while I've figured out…
user2917781
  • 273
  • 2
  • 10
6
votes
1 answer

how to set user for installcheck in the Makefile of a postgres extension?

I am testing an example for creating a simple base36 PostgreSQL extensions. However, I run into problems when writing and using the unit test case (REGRESS =). If I use sudo make installcheck, there will be an error saying ... ==============…
thor
  • 21,418
  • 31
  • 87
  • 173
6
votes
2 answers

Optimizing regression testing in a C++ environnement

In order to avoid too much testing, I would like to provide the Quality Assurance (QA) team with hints on which features have to be regression tested after a development iteration. Do you know tools that could do that on a C++ and Subversion (and…
5
votes
1 answer

regression testing the entire app in Python

I have a small command-line application (about 6k lines). It has no unit tests because I didn't know how to write them; but I'm retroactively adding some now. I read this tutorial but I'm left puzzled about how to test the whole application using…
max
  • 49,282
  • 56
  • 208
  • 355
5
votes
2 answers

mercurial: running remote regression tests automatically on every commit

I commit every time I make some changes that I think might work: I don't do extensive testing before a commit. Also, my commits will soon be automatically pushed to a remote repository. (I'm the only developer, and I have to add features or rewrite…
max
  • 49,282
  • 56
  • 208
  • 355
5
votes
2 answers

cy.url not returning a string as expected

Prior to switching to using a hash router, I had been implementing the cy.url command frequently to assure that links were navigating to the right URL addresses throughout the application. Now that we are using hash routing cy.url no longer yields a…
Justin Oswald
  • 169
  • 1
  • 5
  • 13
5
votes
6 answers

How can we test for the N+1 problem in JPA/Hibernate?

I have a N+1 problem, and I’d like to write some kind of automated regression test because it impacts performance very much. I thought about spying the EntityManager and verifying its method createQuery() is called only once, but Hibernate don’t use…
5
votes
2 answers

Using tags ( Smoke, regression) with TestCafe

Using testcafe grep patterns would partially solve our problem of using tags but it would still display those tags on the spec report ...!!! Is there a way to include tags in the test/fixture names and use grep patterns but skip those tags to be…
5
votes
2 answers

R code to test the difference between coefficients of regressors from one regression

I want to test whether coefficients in one linear regression are different from each other or whether at least one of them is significantly different from one certain value, say 0, this seems quite intuitive to do in Stata. For example webuse…
johnsonzhj
  • 517
  • 1
  • 5
  • 23
5
votes
1 answer

open source regression suite

I have a program, let's name it a.out, that reads input from a file and writes some output to stdout. For example a file contains the line 2,2 and my program "./a.out file" writes 4 at the screen. Now in order to be sure that a.out works well after…
cateof
  • 789
  • 3
  • 11
  • 24
5
votes
2 answers

How to write automated tests for SQL queries?

The current system we are adopting at work is to write some extremely complex queries which perform multiple calculations and have multiple joins / sub-queries. I don't think I am experienced enough to say if this is correct or not so I am agreeing…
James
  • 2,013
  • 3
  • 18
  • 31
1
2
3
14 15