Explain the types of testing defined in MSF. [Hint - Coverage testing and usage testing]Types of testing in MSF:
Coverage Testing: It’s a type of testing used to determine how much part of the source code has been tested. It’s a type of white box testing. There are many techniques to perform coverage testing such as: Functional coverage, statement coverage, decision coverage, condition coverage, path coverage, and entry/exit coverage.
Usage testing: This type of testing is performed to ensure that user and business needs have been met. Users test and accept the release in a non production environment and verify that the solution fits in their existing environment. This testing gives user’s opportunity to understand and get used to the new system and learn the new system as they test it. It allows testers to analyze the problem areas, and areas that need to be improved.
|