Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Maksim Zuev
Total activity
19
Last activity
January 24, 2025 09:03
Member since
August 30, 2021 11:26
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
6
Activity overview
Articles (0)
Posts (0)
Comments (13)
Maksim Zuev
commented,
January 24, 2025 09:03
Hi! XMLReportRunner expects JaCoCo xml report as an inputhttps://www.eclemma.org/jacoco/trunk/doc/index.htmlSo, you can try mapping your data to this format, or use your parsing method
Community
IntelliJ IDEA Open API and Plugin Development
How to implement coverage highlighting
1 vote
Maksim Zuev
commented,
January 23, 2025 14:02
H!addExternalCoverageSuite registers a suite in a storage so that you can later open it from the UI: https://www.jetbrains.com/help/idea/code-coverage.html#select_coverage_suitesIf you don't want t...
Community
IntelliJ IDEA Open API and Plugin Development
How to implement coverage highlighting
1 vote
Maksim Zuev
commented,
January 22, 2025 09:35
Dear Nahuel, You are doing a great job so far. I think the only missing part is calling the coverage suite opening after you created a suite. var coverageDataManager = CoverageDataManager.getInstan...
Community
IntelliJ IDEA Open API and Plugin Development
How to implement coverage highlighting
1 vote
Maksim Zuev
commented,
November 07, 2024 10:11
Please try adding `Coverage` plugin to the list of dependencies. `ProjectData` should be available. Looks like you are in the right direction, but I think you should also implement `MyCoverageRunne...
Community
IntelliJ IDEA Open API and Plugin Development
How to implement coverage highlighting
1 vote
Maksim Zuev
commented,
November 06, 2024 11:56
Dear Nahuel,Unfortunately, the implementation of coverage highlighting is not so flexible as you expected. The implementation is highly tied to the coverage needs, so it is not just ‘which files/li...
Community
IntelliJ IDEA Open API and Plugin Development
How to implement coverage highlighting
0 votes
Maksim Zuev
commented,
January 25, 2024 14:46
Luofeng Qzp hi! You just need one extra step: call `com.intellij.execution.configurations.coverage.JavaCoverageEnabledConfiguration#getFrom` – this will mark your run configuration as suitable for ...
Community
IntelliJ IDEA Open API and Plugin Development
How to run unit test with coverage in plugin?
2 votes
Maksim Zuev
commented,
December 20, 2023 15:48
Sylvainsa Hello! Please try the latest IDEA version 2023.3.The service itself looks actually fully covered, while you shared with us the coverage of the test class. The numbers show 6/7 lines cover...
Community
IntelliJ IDEA Users
Code coverage with JaCoCo appears not to show lines as partially covered?
0 votes
Maksim Zuev
commented,
November 16, 2023 10:52
Official comment
Hi, Niko! I can provide some details on how the highlighting is implemented in the coverage module in IntelliJ.You can look at the `com.intellij.coverage.CoverageEditorAnnotatorImpl` implementation...
Community
IntelliJ IDEA Open API and Plugin Development
Seeking Guidance on Implementing Coverage Highlighting in IntelliJ IDEA Plugin
0 votes
Maksim Zuev
commented,
October 17, 2023 09:58
Hi, xiaobai0314!1. Coverage report import takes the file as a reference, so it does not store the file anywhere. You can use `com.intellij.coverage.CoverageDataManager#addExternalCoverageSuite` met...
Community
IntelliJ IDEA Open API and Plugin Development
I have a few questions regarding code coverage and plugin development in IntelliJ IDEA.
1 vote
Maksim Zuev
commented,
December 07, 2021 11:29
Thank you! Now I see the problem. The `java.test.agent.lib.path` option should be passed to the IDEA itself, not to the test java process. Please pass the directory option to IDEA in Toolbox->IDEA ...
Community
IntelliJ IDEA Users
Problem with coverage test . IntelliJ Idea.
0 votes