Where is the code coverage window in my IntelliJ?

Where can I find the Coverage Tool Window in IntelliJ IDEA Ultimate 11.02? In the textbook, they say it is in View | Tool windows | Coating. But this is not the case in my IDEA, see Figure:

Missing coverage window

I have a plugin plugin enabled.

+5
source share
2 answers

You need to click the Run button with coverage on the toolbar, after the tests are completed, the Coverage panel appears in which the results of the run are displayed.

+5
source

Run → change configurations ---> select coverage area (then you can select IDEA / EMMA / JaCoCo

0
source

All Articles