Difference between Re Testing and Regression Testing?
I want to know difference between Re-Testing and Regression Testing?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Oct 3, 2012, 2:21 AM
Re- Testing :-
• Re-testing means we testing only the certain part of an application again and not considering how it will effect in the other part or in the whole application.
• Re-testing after fixes or modifications of the software or its environment. It can be difficult to determine how much re-testing is needed, especially near the end of the development cycle. Automated testing tools can be especially useful for this type of testing.
Regression Testing :-
• Testing the application after a change in a module or part of the application for testing that is the code change will affect rest of the application.
• This is testing the whole application again after the fixes or the modifications are done on the software. This is mostly done at the end of the Software development life cycle. Mostly Automated testing tools are used for these type of testing.
Thanks