IntelliJ IDEA

Integrated Code Coverage

  • Code coverage engine lets you track specific tests covering each line of the code. Per-branch coverage information is collected and analyzed, letting you see how many times each condition branch was executed.
  • Measure the code coverage for your unit tests or tests written as simple applications with the main() method
  • On-the-fly code coverage execution with no classes pre scanning phase
  • Code coverage statistics for classes and packages
  • Code Coverage Statistics
  • Line executions results right in the editor
  • Code Coverage Editor
  • Correct coverage information displayed for files edited after coverage statistics has been gathered

Learn more about the code coverage feature in the dedicated post on IntelliJ IDEA blog.

to the top