Support Kotlin in three JUnit testing recipes (fix crashes/no-ops)#1065
Merged
Conversation
Replace the contextSensitive JavaTemplate, which generated 0 statements on a Kotlin LST, with direct LST manipulation (rename to assertNull, rewrite the first argument, and fix the method type). This works on both Java and Kotlin.
The JavaTemplate building @valuesource could not be spliced into a Kotlin compilation unit ("Could not parse as Java"). Use KotlinTemplate with Kotlin array syntax on Kotlin sources. Non-String Kotlin @CsvSource is left unchanged (no crash) as the Annotated trait does not resolve Kotlin array attributes.
The JavaTemplate that wraps the body in assertThrows produced an empty body on Kotlin, throwing IndexOutOfBounds on getStatements().get(0). Leave the JUnit 4 @test(expected = ..., timeout = ...) intact on Kotlin rather than crashing or dropping the arguments.
timtebeek
marked this pull request as ready for review
July 24, 2026 15:45
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes three testing recipes that crashed or silently no-op'd on Kotlin sources (surfaced by a mass-run against Kotlin repos; see moderneinc/customer-requests#2861).
AssertTrueNullToAssertNull: replaced thecontextSensitiveJavaTemplate(which generated 0 statements on Kotlin) with direct LST manipulation — rename toassertNull, rewrite the first argument, and fix the method type — so it works on both Java and Kotlin.CsvSourceToValueSource: the@ValueSourceJavaTemplatecould not be spliced into a Kotlin compilation unit ("Could not parse as Java"), so single-String@CsvSourcenow usesKotlinTemplatewith Kotlin[...]array syntax; non-StringKotlin@CsvSourceis left unchanged (no crash) because theAnnotated/Literaltraits don't resolve Kotlin array attributes.UpdateTestAnnotation: the body-wrappingJavaTemplateproduced an empty Kotlin body and threwIndexOutOfBounds, so@Test(expected/timeout)is now left intact on Kotlin rather than crashing or dropping the arguments.Each recipe gains a Kotlin test covering the fixed behavior.