62.4k views
2 votes
How to check code coverage in intellij mac

1 Answer

4 votes

Final answer:

To check code coverage in IntelliJ on a Mac, use the JaCoCo tool. Follow these steps: ensure project is built, go to 'Edit Configurations', enable 'Run with coverage' and run the tests.

Step-by-step explanation:

To check code coverage in IntelliJ on a Mac, you can use the built-in coverage tool called JaCoCo. Here are the steps:

  1. First, make sure your project has been built and compiled.
  2. Then, go to the 'Run' menu and click on 'Edit Configurations'.
  3. In the 'Edit Configurations' window, select your desired run configuration and click on the 'Code Coverage' tab.
  4. Enable the 'Run with coverage' option and click on 'OK' to close the window.
  5. Now, run your tests or application as usual. After the execution is complete, IntelliJ will display a code coverage report in the 'Run' panel.
User Roberto Milani
by
7.8k points