Michael de Kaste
02/25/2025, 1:31 PMclass Organisation(
var name: String,
)
val organisation = mockk<Organisation>()
val property: KMutableProperty0<String> = mockk()
every { organisation::name } returns property
this does not work because the every { ... } call does not contain a mocked call