You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to enable per-test coverage using the Maven plugin. My goal is to generate the binary .ic report and import it into IntelliJ IDEA so that I can see which tests cover specific lines of code. Ideally I can use the IntelliJ IDEA code coverage runner in a CI pipeline.
I have looked through the documentation but couldn't find detailed steps on how to achieve this. Could you provide guidance on how to configure the Maven plugin to enable per-test coverage and generate the necessary .ic report?
Any help or examples would be greatly appreciated.
Thanks in advance!
The text was updated successfully, but these errors were encountered:
Hi,
it is impossible to find out from which test some code was executed, because the entire JVM instance is being instrumented and the Agent does not know what calls execution.
You can run a limited set of tests and generate an ic report for it.
Hi all,
I am trying to enable per-test coverage using the Maven plugin. My goal is to generate the binary .ic report and import it into IntelliJ IDEA so that I can see which tests cover specific lines of code. Ideally I can use the IntelliJ IDEA code coverage runner in a CI pipeline.
I have looked through the documentation but couldn't find detailed steps on how to achieve this. Could you provide guidance on how to configure the Maven plugin to enable per-test coverage and generate the necessary .ic report?
Any help or examples would be greatly appreciated.
Thanks in advance!
The text was updated successfully, but these errors were encountered: