I'm using kotlintest in my projects and I want to run mutation testing with pitest.
Already tried using pitest alone and with junit5 plugin, but the result is always:
Found 0 tests
================================================================================
- Statistics
================================================================================
>> Generated 610 mutations Killed 0 (0%)
>> Ran 0 tests (0 tests per mutation)
I'm using:
- Pitest - 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.4.5'
- Pitest junit5 - 'org.pitest:pitest-junit5-plugin:0.9'
- Koltintest - 'io.kotlintest:kotlintest-runner-junit5:3.4.2'
I know kotlintest supports pitest since v3.3.0 (according here) but I don't know how to make it work.
Any ideas how to make it run properly?
Thanks!