c# - What is functional testing? -
What is a functional test? How is it different from the unit testing and integration test?
Another way of thinking is this:
Unit Test:
Your Check codes as units, confirm ways to call and return values and object properties / values. Functional Testing:
Checking your code path even before a task This ensures your application what your code does.
Integral testing? Do you mean integration testing?
Integration test:
To ensure that your code is plugged in to a large scale, check that you have not broken the existing argument and you can integrate back into the main branch.
Comments
Post a Comment