English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

2006-11-13 01:44:29 · 9 answers · asked by Nageswari C 1 in Education & Reference Standards & Testing

9 answers

Regression testing is when a program works on a previous type of input and when run again it fails and you're wondering why it failed it the input is the same, therefore you work back to to find this bug. We do this a lot in computer programming.

For a more definition type of response look here:
http://en.wikipedia.org/wiki/Regression_testing

2006-11-13 01:49:08 · answer #1 · answered by Arkane Steelblade 4 · 0 0

Regression testing is any type of software testing which seeks to uncover regression bugs. Regression bugs occur whenever software functionality that previously worked as desired stops working or no longer works in the same way that was previously planned. Typically regression bugs occur as an unintended consequence of program changes.

Common methods of regression testing include re-running previously run tests and checking whether previously fixed faults have reemerged.

Experience has shown that as software is developed, this kind of reemergence of faults is quite common. Sometimes it occurs because a fix gets lost through poor revision control practices (or simple human error in revision control), but just as often a fix for a problem will be "fragile" - i.e. if some other change is made to the program, the fix no longer works. Finally, it has often been the case that when some feature is redesigned, the same mistakes will be made in the redesign that were made in the original implementation of the feature.

Therefore, in most software development situations it is considered good practice that when a bug is located and fixed, a test that exposes the bug is recorded and regularly retested after subsequent changes to the program. Although this may be done through manual testing procedures using programming techniques, it is often done using automated testing tools. Such a 'test suite' contains software tools that allows the testing environment to execute all the regression test cases automatically; some projects even set up automated systems to automatically re-run all regression tests at specified intervals and report any regressions. Common strategies are to run such a system after every successful compile (for small projects), every night, or once a week.

Regression testing is an integral part of the extreme programming software development methodology. In this methodology, design documents are replaced by extensive, repeatable, and automated testing of the entire software package at every stage in the software development cycle.

2006-11-13 01:57:33 · answer #2 · answered by Anonymous · 0 0

I assume you know a bit of software engineering.

Simply put:

Let's say you have written a code. And are testing it. Generally you would follow a very systematic approach wherein you will list out all the test cases (let us call them A,B,C,etc).

Let us assume that you are testing the code for the various test cases one by one. Your code passes test cases A and B. Now let us assume it fails in case C.

You analyse your code and debug the error. Now you make changes in your code that should make sure test case C is also satisfied.

Now when you restart testing your code after making these changes, you should not start from test case C. You should start from test case A, though you have tested A and B earlier itself.

The reason is that when you make changes in the code to satisfy test case C, you might have done something that affects cases A and B. So just to make sure that the remaining test cases are still satisfied even after the changes are made, we restart the testing process from the first test case.

This is called Regression testing.

2006-11-13 01:58:28 · answer #3 · answered by Flashy V 2 · 0 0

regression testing Last modified:

Business Benefits of Migrating .NET Workloads to the Mainframe
November 15, 2006 (2:00pm EST, 11:00am PST)
Attend this one-hour Web seminar and learn the business benefits and cost savings opportunities of porting .NET applications to the Mainframe, optimizing the cost of ownership of both the Mainframe and .NET applications. Find out how enterprises with a large and growing Windows server farm and a Mainframe can reduce software licensing fees, operational expenses and TCO significantly, by consolidating distributed .NET workloads onto WebSphere or zOS running on System z.
Register Now >
--------------------------------------------------------------------------------
Storage Strategies for Small Businesses
November 7, 2006--2 p.m. EST, 11 a.m. PST
When it comes to storage, small and medium businesses have a lot in common with large enterprises. Just like the Fortune 400, they need to ensure that data is backed up, retrievable and secure, and that data access complies with governmental regulations. Unfortunately, if you are a small business owner you also cope with some challenges the big guys don't have, budgets are small and your IT staff, if you even have one, may not have storage-specific expertise. Attend this webcast and learn storage strategies to meet your growing business demands.
Register Now >



The selective retesting of a software system that has been modified to ensure that any bugs have been fixed and that no other previously working functions have failed as a result of the reparations and that newly added features have not created problems with previous versions of the software. Also referred to as verification testing, regression testing is initiated after a programmer has attempted to fix a recognized problem or has added source code to a program that may have inadvertently introduced errors. It is a quality control measure to ensure that the newly modified code still complies with its specified requirements and that unmodified code has not been affected by the maintenance activity.

2006-11-13 01:50:20 · answer #4 · answered by Krishna 6 · 0 0

Regression testing is a process to verify that the product does not have a bad impact or there are no new bug’s raises because of fixing any bug.

2016-11-30 19:18:08 · answer #5 · answered by Roohi 2 · 0 0

regression testing is "the selective retesting of a software system that has been modified to ensure that any bugs have been fixed and that no other previously working functions have failed as a result of the reparations and that newly added features have not created problems with previous versions of the software." there's alot more but i really dont wanna type all of it. u can go to http://www.webopedia.com/TERM/regression_testing.html

2006-11-13 01:57:27 · answer #6 · answered by lor lor 1 · 0 0

Testing the already tested module if it has been touched by the developer for addition of new req or modification of particular module.

2006-11-14 20:17:54 · answer #7 · answered by faisal 2 · 0 0

Its the thing U need to find why there was a failure in the program

2006-11-13 01:53:21 · answer #8 · answered by Ramasubramanian 6 · 0 0

in what field please... is it in philosophy, psychology or in science in physics? be more specific.. coz this is a broad topic.

2006-11-13 01:46:37 · answer #9 · answered by chikqie 2 · 0 0

fedest.com, questions and answers