``` mockkStatic("java.time.Instant") every { Insta...
# mockk
p
Copy code
mockkStatic("java.time.Instant")
every { Instant.now() } returns Instant.parse("2017-11-01T11:04:56Z")
throws
Copy code
io.mockk.MockKException: Bad recording sequence. Please finalize every { ... } block with returns/answers/just Runs
🤔