Testing plugins for kotlin projects
Answered
Are there any plans to publish https://github.com/JetBrains/kotlin/tree/master/idea/idea-test-framework or something similar? I'm looking at https://www.jetbrains.org/intellij/sdk/docs/basics/testing_plugins/light_and_heavy_tests.html but it's not very clear on how to add tests for a specific project type (a kotlin project for example). It also not very clear on how to declare third party dependencies for a test fixture.
Please sign in to leave a comment.
I assume you want to include Kotlin specific libraries in your test runtime environment?
Provide the corresponding libraries/JARs like e.g. KotlinWithJdkAndRuntimeLightProjectDescriptor does from your test's getProjectDescriptor().
Thanks, I'll give this a try!