Are there tools for mutation testing that are compatible with kotlin native? Like for when writing KMP libraries I can not just use Pitest if I got it correct since it’s a JVM thing
c
christophsturm
08/10/2025, 8:44 AM
you can use pitest on the jvm part of your multipart project.
m
maarten ha
08/10/2025, 8:51 AM
Most of my code is not written only for the JVM part. It’s written in the common which is platform independent. I would love to keep my tests there instead of need to port it to another platform
c
christophsturm
08/10/2025, 9:38 AM
You can keep the tests in common and run them with pitest on the jvm