Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
Sign in
Anna Kozlova
Total activity
1422
Last activity
June 12, 2023 14:16
Member since
October 25, 2005 10:47
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
503
Activity overview
Articles (0)
Posts (0)
Comments (919)
Sort by recent activity
Recent activity
Votes
Created
November 15, 2019 18:00
is it java you write your tests in? If so, then registered TestFramework extension should be enough. If not, then you need to register smth similar to `com.intellij.testIntegration.TestRunLineMarke...
Community
IntelliJ IDEA Open API and Plugin Development
Custom testing framework - Showing tests in console
0 votes
Created
November 14, 2019 19:15
you need also to send testStarted/testFinished/etc messages so IDEA will build and update the tree of tests. See e.g. `com.intellij.junit4.JUnit4TestListener`. You also may check `jetbrains.build...
Community
IntelliJ IDEA Open API and Plugin Development
Custom testing framework - Showing tests in console
0 votes
Created
November 14, 2019 07:19
https://github.com/JetBrains/intellij-community/blob/master/java/execution/impl/src/com/intellij/execution/testframework/JavaTestLocator.java it's used when you want to navigate from tests tree to ...
Community
IntelliJ IDEA Open API and Plugin Development
Custom testing framework - Showing tests in console
0 votes
Created
November 13, 2019 18:57
Hi Thomas, I hope that the topic https://intellij-support.jetbrains.com/hc/en-us/community/posts/206103879-Graphical-integration-of-running-tests-in-plugin would help Anna
Community
IntelliJ IDEA Open API and Plugin Development
Custom testing framework - Showing tests in console
0 votes
Created
October 25, 2019 06:44
junit 5 could provide url pointers to anything, there are some open bugs assigned to me though, please ping me if you also end up there. I am not sure that I understood what you say about plugin te...
Community
IntelliJ IDEA EAP Users
How can I customize test result tree view actions?
0 votes
Created
October 24, 2019 18:45
Hi Vladimir, there is no possibility to customise actions. What framework do you use to run tests? The existing approach is to customise messages send from tests to IDEA and implement your `com.int...
Community
IntelliJ IDEA EAP Users
How can I customize test result tree view actions?
0 votes
Created
September 10, 2019 17:46
The plugin won't work with 2019.3, sorry. Without renaming, modularised projects won't be able to work and we aim to fix that My suggestion is to make this functionality (run tests in parallel) as ...
Community
IntelliJ IDEA Open API and Plugin Development
Depend on plugin jar or copy sources to custom plugin
0 votes
Created
August 31, 2019 18:21
Hi, 1. `psiClass.findMethodsByName(name, true)` searches for all methods in the `psiClass` hierarchy, including `java.lang.Object` and I would not rely on the order of methods here. In your case it...
Community
IntelliJ IDEA Open API and Plugin Development
Can't get method overrides correctly
0 votes
Created
August 28, 2019 11:47
Hi, I don't expect that somebody would use private methods in junit-rt. Please share what your plugin is supposed to do so we could try to make that part somehow extensible. Thanks, Anna
Community
IntelliJ IDEA Open API and Plugin Development
Depend on plugin jar or copy sources to custom plugin
0 votes
Created
June 25, 2019 16:36
Hi Alex, have you implemented your own psi for C/Fortran files? if so, that psi should implement `com.intellij.psi.PsiElement#getNavigationElement` to map compiled class to the corresponding source...
Community
IntelliJ IDEA Open API and Plugin Development
Extension point for locating sources from a stack trace?
0 votes
«
First
‹
Previous
Next
›
Last
»