Lukaville

- Total activity 10
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 3
-
Lukaville created a post, AnsweredKotlin IDEA test framework library
I want to use classes from kotlin/idea/idea-test-framework module (for example: KotlinLightCodeInsightFixtureTestCase). Is this module published as library? What is the recommended way of using thi... -
Lukaville created a post, MethodReferencesSearch perfomance
I created simple LocalInspectionTool that checks is some specific extension function called on any of class object. This inspection registers problem on class declaration if that extension function... -
Lukaville created a post, Running Android Studio plugin unit tests in Intellij IDEA
I have simple inspection unit test: class SomeTest : BaseTestCase() { private fun doTest() { val tool = MyTool() doTest("inspections/myToolTest/" + getTestName(true), tool) } ... -
-
Lukaville created a post, Intellij IDEA plugin unit testing (test project dependencies)
I have Intellij IDEA plugin that simply finds org.jetbrains.annotations.NotNull annotation and marks it as error: class JetBrainsNullabilityAnnotations : BaseJavaLocalInspectionTool() { ... ...