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:
- First, make sure your project has been built and compiled.
- Then, go to the 'Run' menu and click on 'Edit Configurations'.
- In the 'Edit Configurations' window, select your desired run configuration and click on the 'Code Coverage' tab.
- Enable the 'Run with coverage' option and click on 'OK' to close the window.
- Now, run your tests or application as usual. After the execution is complete, IntelliJ will display a code coverage report in the 'Run' panel.