So this won't work? ``` typealias ProgressNotifier...
# mockk
d
So this won't work?
Copy code
typealias ProgressNotifierFactory = (id: Int, iconRes: Int, title: String) -> ProgressNotifier
val factory by memoized { mockk<ProgressNotifierFactory>() }
val progressNotifier = mockk<ProgressNotifier>()
every { factory.invoke(any(), any(), any()) } returns progressNotifier