hey guys! what’s your approach to mocking presenters written in Kotlin? it doesn’t make sense to introduce an interface for a presenter, but mocking a class which is not
open
would not work with Mockito (correct me if I’m wrong here). so is using
open
in this case a smell, or is it the only viable solution?