JacocoKotest integrates with Jacoco for code coverage in the normal way you'd expect.In gradle, add jacoco to your plugins.plugins { ... jacoco ...}CopyAdd the jacoco XML report task.tasks.jacocoTestReport { reports { xml.isEnabled = true }}Copy