Top "Mockk" questions

Mockk is a free, open source mocking framework for Kotlin programming language.

Mock a private property

Lets say we have a class like this: class Whatever { private var something = false fun aMethod(): Int { return if( something ) { 1 } …

kotlin mockk