主页
IDEs Support (IntelliJ Platform) | JetBrains
联系支持服务
社区
登录
Maksim Zuev
活动总数
19
最后的活动
2025年01月24日 09:03
成员加入日期
2021年08月30日 11:26
关注
0 名用户
关注者数
0 名用户
投票数
0
订阅数
6
活动概览
文章(0)
帖子(0)
评论(13)
Maksim Zuev
进行了评论,
2025年01月24日 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
社区
IntelliJ IDEA Open API and Plugin Development
How to implement coverage highlighting
1 票
Maksim Zuev
进行了评论,
2025年01月23日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to implement coverage highlighting
1 票
Maksim Zuev
进行了评论,
2025年01月22日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to implement coverage highlighting
1 票
Maksim Zuev
进行了评论,
2024年11月07日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to implement coverage highlighting
1 票
Maksim Zuev
进行了评论,
2024年11月06日 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...
社区
IntelliJ IDEA Open API and Plugin Development
How to implement coverage highlighting
0 票
Maksim Zuev
进行了评论,
2024年01月25日 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 ...
社区
IntelliJ IDEA Open API and Plugin Development
How to run unit test with coverage in plugin?
2 票
Maksim Zuev
进行了评论,
2023年12月20日 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...
社区
IntelliJ IDEA Users
Code coverage with JaCoCo appears not to show lines as partially covered?
0 票
Maksim Zuev
进行了评论,
2023年11月16日 10:52
正式评论
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...
社区
IntelliJ IDEA Open API and Plugin Development
Seeking Guidance on Implementing Coverage Highlighting in IntelliJ IDEA Plugin
0 票
Maksim Zuev
进行了评论,
2023年10月17日 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...
社区
IntelliJ IDEA Open API and Plugin Development
I have a few questions regarding code coverage and plugin development in IntelliJ IDEA.
1 票
Maksim Zuev
进行了评论,
2021年12月07日 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 ...
社区
IntelliJ IDEA Users
Problem with coverage test . IntelliJ Idea.
0 票