Home > OS >  How to locate Intellji IDEA "Generate Test" related code?
How to locate Intellji IDEA "Generate Test" related code?

Time:09-08

Right click on a open Java file, we can get Generate item:

enter image description here

Then click Test and go on, we can generate target Unit Test:

enter image description here

I want to develop a new Intellji IDEA plugin base on upper build-in 'Test generator' feature, I want to check related IDEA source code, I just guss may be in some .jar in com.jetbrains.ideaIC library, and fail to locate it for a long time:

enter image description here

I have no better idea about how to locate the code.

Could you tell me where is the related source code, or how to better locate it?

Thanks for your idea!!!

CodePudding user response:

This is the related package in the source code https://github.com/JetBrains/intellij-community/tree/0e2aa4030ee763c9b0c828f0b5119f4cdcc66f35/java/java-impl/src/com/intellij/testIntegration/createTest

  • Related