David Kubecka
04/12/2023, 2:03 PMfun <V : BaseView> EntityViewManager.getById(clazz: Class<out V>, id: Long): V = ...
where EntityViewManager
is an external java class. Currently, I'm trying to do this
mockkStatic("pkg.FileNameKt")
every { any<EntityViewManager>().getById<InstitutionView>(any(), any()) } returns testInstitutionView()
but the mock isn't used.
What am I missing?