Multiple choice technology testing

What are Coverage Levels available for Code Coverage Analysis?

  1. Method

  2. Line

  3. Line With Condition

  4. All

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

JProbe's Code Coverage Analysis provides multiple granularity levels for measuring how thoroughly your tests exercise the code. Method coverage tracks which methods were called, Line coverage tracks which lines of code were executed, and Line With Condition (also called branch coverage) tracks whether all possible outcomes in conditional statements were tested. The 'All' option means all these coverage levels are available for comprehensive testing assessment.