Function tests - microsoft solution framework

Define Function tests

Function testing involves testing of various functions present in the source code. It is done by developers, often assuming that Unit testing was either not done at all or not done properly. The main objective is to ensure that all functions in the code have been tested. Functions that do not perform as expected are exposed. Function testing uncovers potential problems in implemented algorithms or functions that implement some complex logic. It helps identity any bottlenecks in the code.
Build verification tests - microsoft solution framework
Build verification tests - It is a collection of tests which are performed on every new build of the solution to verify sanity of the solution........
Regression tests - microsoft solution framework
Regression tests are performed to ensure that any changes in the code have not broken previous functionality.........
Configuration tests - microsoft solution framework
Configuration tests are performed to ensure that the current configuration does not suffer from any potential problems.........
Post your comment