Software Quality Assurance & Testing Stack Exchange is a question and answer site for software quality control experts, automation engineers, and software testers. Join them; it only takes a minute:

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

What is functional testing? is functional testing different from regression testing? I have heard the term functional testing in many different types, some use it for thorough testing part while others say functional testing is same as regression.

I have searched many sites but there is a lots of mismatch in these.

share|improve this question

put on hold as unclear what you're asking by dzieciou, NarendraC, Bharat Mane, TESTasy, Rsf 34 mins ago

Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, it’s hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question.If this question can be reworded to fit the rules in the help center, please edit the question.

    
Check this out guru99.com. There is no mismatch. – Muhammad Ali Khamis 9 hours ago
    
@MuhammadAliKhamis i am aware of these different websites, but as i had written in my question, different websites shows different opinions about this. that's why i am here. – Keshav 9 hours ago
up vote 4 down vote accepted

Depending on where you look, you'll get slightly different answers.

Functional Testing :

Testing the features and operational behavior of a product to ensure that the application is developed correspond to its specifications and requirements.

Testing that ignores the internal mechanism of a system or component and focuses solely on the outputs generated in response to selected inputs and execution conditions.
Functional tests check a particular feature for correctness by comparing the results for a given input against the specification. Functional tests don't concern themselves with intermediate results or side-effects, just the result (they don't care that after doing x, object y has state z). They are written to test part of the specification such as, "calling function Square(x) with the argument of 2 returns 4".

Regression Testing:

"A regression test re-runs previous tests against the changed software to ensure that the changes made in the current software do not affect the functionality of the existing software."

Regression is surely a check against the newly deployed code/or a release deployment happened where we just make sure it has no other impacts (ex: in terms of code, functionalities, output and the behavior of the application) and therefore we ensure that deployment has been smooth.

share|improve this answer
1  
good one Bharat ! – NarendraC 5 hours ago

Functional & Regression Testing:

  • Functional Testing is carried out to verify whether implemented function or feature is working as specs or as expected?
  • Functional testing is having scope limited to targeted feature and functionality testing
  • Regression Testing is carried out when bug fixes happens, features has been added in old product and that product we are planning to deploy.
  • Regression testing result helps to ensure after bug fixes and addition of new features are working as expected + at the same time previously developed features are also working well
  • Scope of regression testing is very wide and huge. It includes end to end testing of the product
share|improve this answer
1  
That's what i was looking for, thats alot man – Keshav 8 hours ago

Not the answer you're looking for? Browse other questions tagged or ask your own question.