What is the Kotest Gradle plugin for? Why does it appear to require Google KSP as well?
s
sam
08/20/2025, 5:47 AM
If you're using JVM or android you can choose to use the Junit Platform approach (what we did in Kotest 5.0). In that case, no changes needed.
sam
08/20/2025, 5:48 AM
Alternatively, we now offer an enhanced approach using a new gradle plugin (that under the hood uses KSP), which gives better integration in areas where the junit platform support is broken in gradle for non-class based test frameworks.
m
Michael Strasser
08/20/2025, 5:51 AM
Thanks! So IIUC, the Kotest plugin removes the need for JUnit Platform and provides better integration?