Which leaves me wondering. Is it possible to call ...
# mockk
g
Which leaves me wondering. Is it possible to call the real method after mocking it? Like
Copy code
mockkStatic(Instant::class)
every { Instant.now() } returns Actual andThen { println("called now!") }