Mockk is a free, open source mocking framework for Kotlin programming language.
Lets say we have a class like this: class Whatever { private var something = false fun aMethod(): Int { return if( something ) { 1 } …