What's the best way to write tests for plugin?

Unit test or anything else.

0

Hello,

It's up to you basically :)

We have a mini test framework that configures IoC with the test application, project etc. It's useful for writing functional and semi-functional tests. However, there is absolutely no problem if you classes are lowly coupled and you can provide unit tests for them as well.

Denis

0

Thank you, Denis

Where can I find more information about the mini test fx?

IL

0

There is the 'testFramework' module that contains the stuff. You may start from the com.intellij.testFramework.fixtures.LightCodeInsightFixtureTestCase

Denis

0

请先登录再写评论。