first of all, please investigate the default/native platform solution for unit test (the kotlin.test framework:
https://kotlinlang.org/api/latest/kotlin.test/), and try to understand the best way to use it and where to concentrate your unit tests. In my case, I prefer to make the majority of my business logic in the common module (plain kotlin source folder), and I use the mockk-common on my unit tests....