Code coverage is used to determine how effectively your tests exercise the code in your application. This way you can identify sections of code that are covered, not covered or partially covered by your tests. Visual Studio uses 2 different types of analysis, block-based statement coverage (C1 coverage) and line-based coverage. Block-based statement coverageA block...
↧