Tagged Questions

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.

learn more… | top users | synonyms

13
votes
10answers
837 views

How to perform regression tests in embedded systems

What good practices and strategies are there for running regression tests in embedded environments or in other situations where the possibility to automate tests is very limited. In my experience a ...
13
votes
11answers
4k views

Best automated testing tool for web applications?

Having repeatable automated tests of web applications lets one detect regression with very little ongoing labour cost (the main cost being writing the test scripts up front). However there seems to be ...
8
votes
3answers
278 views

Regression Testing for Styling and Layout of Web Apps

I realise this is a non-trivial task, but is there any way to regression test the styling and rendered layout of a web application? I've found it straight-forward to unittest and regression test ...
7
votes
5answers
467 views

What does regression test means?

Could anyone explain the word regression test in an understandable way?
6
votes
2answers
204 views

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 ...
6
votes
8answers
498 views

Who writes the automated UI tests? Developers or Testers?

We're in the initial stages of a large project, and have decided that some form of automated UI testing is likely going to be useful for us, but have not yet sorted out exactly how this is going to ...
6
votes
3answers
1k views

Regression testing in C++

I can't use unit tests for some parts of code so I'm falling back to regression tests. I would like to check whether my program behaves in the same way after some modifications. And by behaviour I ...
5
votes
4answers
263 views

Unit Test? Integration Test? Regression Test? Acceptance Test?

Is there anyone that can clearly define these levels of testing as I find it difficult to differentiate when doing TDD or unit testing. Please if anyone can elaborate how, when to implement these?
5
votes
4answers
522 views

How to automate website regression testing

I want set up automated regression tests for a website -- the user fills out forms and I want to check for correct responses. Can anyone recommend tools for automating this?
5
votes
6answers
1k views

What tools are available for QA a Website? That is treated as a Unit Testing

We are looking for QA tool that allow us to test functionality in our web applications. At this moment we QA all our work/enhancements/defects by hand, but we have so many webapps that is difficult to ...
5
votes
8answers
1k views

Are regression tests the entire test suite or a sample of tests?

I was taught that a regression test was a small (only enough to prove you didn't break anything with the introduction of a change or new modules) sample of the overall tests. However, this article by ...
4
votes
9answers
130 views

Should I run my regression testing programs on both AMD and Intel chips?

Right now I plan to test on 32-bit, 64-bit, Windows XP Home, Windows XP Pro, Windows Vista Home Basic, Windows Vista Ultimate, Windows 7 Home Basic, and Windows 7 Ultimate ... all with the latest ...
4
votes
1answer
108 views

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. ...
4
votes
4answers
318 views

Any systematic way to avoid “reentry” problem? (embedded system)

We are using C to build a system on ARM core (i.e. an embedded system). The question is: how can we avoid reentry problem in a formal way so that we are confident all reentry bugs are removed. This ...
4
votes
6answers
314 views

Is there a right way to implement a continuous improvement (AKA software hardening) process?

Each release it seems that our customers find a few old issues with our software. It makes it look like every release has multiple bugs, when in reality our new code is generally solid. We have tried ...
4
votes
6answers
3k views

Software Test Automation - Masters Thesis

i am trying to write a thesis about Software Test Automation. I plan to compare the two Approaches of Recording and Programming of Test Scripts, and to discuss about several Automation Frameworks, for ...
3
votes
2answers
25 views

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 ...
3
votes
1answer
124 views

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 ...
3
votes
1answer
167 views

I tried: valgrind, _GLIBCXX_DEBUG, -fno-strict-aliasing; how do I debug this error?

I have a really strange error that I've spend several days trying to figure out, and so now I want to see if anybody has any comments to help me understand what's happening. Some background. I'm ...
3
votes
3answers
136 views

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 ...
3
votes
2answers
108 views

Reuse vs. maintainability and ease of testing

Everyone likes to talk about reusability. Where I work, whenever some new idea is being tossed around or tested out, the question of reusability always comes up. "We want to maximize our investment in ...
3
votes
3answers
104 views

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 ...
2
votes
2answers
70 views

Automatic Runtime Performance Regression Test in Java

I'm looking for ways to detect changes in runtime performance of my code in an automatic way. This would act in a similar way that JUnit does, but instead of testing the code's functionality it would ...
2
votes
3answers
41 views

Reducing regressions and new bugs in legacy code

We have inherited a system with an extremely low quality code base. The web application part of it contains large sections of PHP, SQL, HTML and JavaScript all mixed up. There are no automated tests ...
2
votes
1answer
58 views

example of unit tests preventing regression [closed]

I am the only developer in my IT shop (a mid-size retailer) writing unit tests. I have been tasked by management with giving a presentation on the benefits of doing so to our developers. One of the ...
2
votes
3answers
67 views

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 ...
2
votes
1answer
117 views

How does testing connection to a third-party API fit into continuous integration?

I wrote a test sometime ago that tests an integration I wrote between my code and a third-party API. The test makes sure that the integration works properly and that we get back the expected results. ...
2
votes
3answers
728 views

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 ...
2
votes
2answers
149 views

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 ...
2
votes
3answers
421 views

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 ...
2
votes
2answers
569 views

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 ...
2
votes
1answer
899 views

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 ...
2
votes
3answers
463 views

Performance Testing

Hey all, 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 ...
2
votes
3answers
1k views

Test framework for black box regression testing

I am looking for a tool for regression testing a suite of equipment we are building. The current concept is that you create an input file (text/csv) to the tool specifying inputs to the system under ...
1
vote
1answer
96 views

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. ...
1
vote
3answers
124 views

Java-Based Regression Testing

How is regression testing performed in Java? Are there automated regression test frameworks or do you just write (JUnit) unit tests that help ensure against regressions? Is there a way or set of best ...
1
vote
3answers
227 views

Implementing `make check` or `make test`

How can I implement a simple regression test framework with Make? (I’m using GNU Make, if that matters.) My current makefile looks something like this (edited for simplicity): OBJS = jscheme.o ...
1
vote
0answers
144 views

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

How to build an autobuild system and regression test system for subversion?

I have been asked to do the following: a) Build a VM for a subversion server b) Figure out an autobuild system and regression test system c) Write documentation or simple instructions to get people ...
1
vote
2answers
162 views

How do you test programs that require complex input data?

We have a suite of converters that take complex data and transform it. Mostly the input is EDI and the output XML, or vice-versa, although there are other formats. There are many inter-dependencies ...
0
votes
0answers
14 views

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)? ...
0
votes
0answers
71 views

Best approach of writing autoIT scripts using NUNIT and VB.NET

My aim is to call a dll in teamcity that executes autoitscript. For this I am using vb.net class library and nunit. Am I using the right approach to accomplish this task. or using teamcity other ...
0
votes
0answers
12 views

Regression testing of SOAP services

I have a SOAP service that takes in a customerId and returns offers for that customer. The response can contain multiple offers and is not always returned in the same order. An example response looks ...
0
votes
2answers
51 views

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 ...
0
votes
0answers
32 views

need help for Non-regression testing

i'm right now trying to make a system that automitise non-regression testing for billing & rating of the ERP BSCS. i'm looking for free existing solutions that could be needed when building the ...
0
votes
1answer
50 views

How to validate if keyword matched is highlighed or not in Ruby and Rails

I am writing a testing script using Ruby and Rails. I have to validate whether proper keyword is highlighted or not. How do i do in rub. For eg. "confidential" is my keyword and want to validate ...
0
votes
2answers
113 views

Date sensitive regression testing using python

Hey, I am helping to set up a regression testing suite for our python web application. Many of our tests are scheduling style tests where the current date is important. For example: create a recurring ...
0
votes
1answer
155 views

Web Regression Test Tool with Screen Capture

I'm looking for a tool to test web sites that will follow a simple script e.g. URL www.example.com/SomePage FORMFIELD MyFormFieldID = "Some value" BUTTON-PUSH MyButtonID or CLICK-LINK MyLinkID WAIT ...
0
votes
1answer
60 views

Regression testing on Apple WebObjetcs GUI

I have recently started a new job in a company that depends heavily in an application developed with Apple Web Objects. It happens that this company does not have a way to make automated tests ...
0
votes
1answer
345 views

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

1 2