...

/

Unit Test Coverage: Concepts and Techniques

Unit Test Coverage: Concepts and Techniques

Look at the various metrics of test coverage and why it is a good indicator of application code robustness.

Introduction

Test coverage is a measure of the degree to which application code is executed when test code is run. Test code may enhance test coverage by increasing the branch coverage of the application code. Branch coverage is the ratio of the number of executed branches in an application code’s control structure and the total number of branches in control structures. Control structures include selection statements and iteration statements. Selection statements include the if, if else, and switch statements. Iteration statements include the do, for, for each, and while statements.

You can think of branch coverage qualitatively and quantitatively. Its quantitative measurement is given by the following formula:

Branch coverage=Branches t ...