InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by branch testing? |
|
Answer» The testing of all the BRANCHES of a code, which is done at once, is called branch testing. This TECHNIQUE enables every possible branch from every decision point to be executed at least once, ensuring that all REACHABLE code is executed. As part of branch testing, each outcome from a code module is TESTED as a binary outcome, so you must test both True and False outcomes. Branch Testing provides some features that are generally useful for a software project as GIVEN below:
|
|