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
1
vote
2 answers

How to detect when all tests within a QUnit module is completed?

For the purposes of test sequencing as well as preventing a test being interrupted. Also, is there any way to stop a module or test midway and reset QUnit (including all history results)? QUnit.moduleDone was the only thing I tried for testing…
bcm
  • 5,470
  • 10
  • 59
  • 92
1
vote
1 answer

How can I get changed methods in C#?

I've spent the last few weeks trying to figure out a way to implement (or find someone who has implemented) regressive testing for our build process, but so far I haven't found anything that works. We use TFS2008 and VS2010, and upgrading to…
piebie
  • 2,652
  • 21
  • 30
1
vote
2 answers

Can I generate a regression test suite automatically?

We're looking at an upgrade from zimbra 6 to zimbra 7, and we want to avoid regressions in the account lifecycle software we wrote to integrate with it. Since most things are documented by a WSDL file, we were thinking of just using that to test.…
jldugger
  • 2,339
  • 6
  • 22
  • 24
1
vote
1 answer

Karate : Matching data between nested array

Is there a way to match the response data from API which contain a nested array for a key where key-value pair are in different order inside the nested array in karate? Scenario: Verify original data contains expected data def original = [{ a:1, b:…
Harish
  • 35
  • 4
1
vote
3 answers

data-cy exists in DOM tree but not visible

I need some clarification on the usage of Cypress. I'm writing some e2e tests and one of them failed, because the element is not visible. I found this answer helpful, it solved my problem. Clicking element which is reported to be not…
1
vote
0 answers

Can't run BackstopJS interactive reporting

I'm able to generate backstop reports and see them as static pages, but when I try to load the interactive report provided by backstop remote I get the following message in the browser: Cannot GET / I have tried new and old LTS versions of node and…
cesarbrie
  • 43
  • 1
  • 6
1
vote
1 answer

Python integration / regression testing framework

I'm just wondering whether there is any good framework for doing integration / regression tests in Python? I want to run all modules on large input data files (sensor measurements) to ensure that new changes in the code have not introduced any new…
1
vote
1 answer

What is the example for difference between integration test and regression tests?

Integration test checks that when units are combined, the systems fucntions well. Regression tests also do the same. What is the example for difference between these?
variable
  • 8,262
  • 9
  • 95
  • 215
1
vote
1 answer

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

I am trying to compare two regression coefficient from the same panel regression used over two different time periods in order to confirm the statistical significance of difference. Therefore, running my panel regression first with observations over…
B-Z
  • 83
  • 7
1
vote
0 answers

how to create test strategy for additional functionalities which are not mentioned in requirement?

Can anyone please explain how to create test strategy for those functionalities which are additionally added in our application & that is not mentioned in requirement doc. For example - there is one functionality of button click that on double-click…
1
vote
1 answer

How do regression tests best fit within a CI/CD workflow?

I'm writing an API that consists of several microservices. I have the code in a private Gitlab repo. I have a custom CI/CD pipeline configured to run a couple of different steps automatically on every commit to master (e.g. build, test, deploy to a…
1
vote
1 answer

Determine if a handle points to an element of the screen (and not a printer etc)

I'm looking for a way to identify if a handle references something on the/a screen (a screen, a window, a control, the entire virtual desktop, etc). I'm trying to standardise the resolution of the interface so that I can consistently save it and do…
1
vote
1 answer

Handling Expected Changes in Regression Tests

I am working on using continuous deployment for my service which generates XML files as output. To achieve this, we are planning to add Regression Tests to our deployment flow, where we compare the XML file generated with this code change v/s the…
1
vote
0 answers

How do I declare and use a variable in the yaml file that is formatted for pyresttest?

So, a brief description of what I want, what my issue is, and what I have tried. I want to declare and use a dictionary variable for my tests in pyrest, specifically for the [url, body] section so that I can conduct my POST tests targeting a…
archon263
  • 89
  • 1
  • 9
1
vote
3 answers

Validation of dynamic text in testing

I am trying to validate a pin code in my application. I am using Katalon and I have not been able to find an answer. The pin code that I need to validate is the same length but different each time I run the test and looks like this on my page: PIN…
mwidener
  • 11
  • 2