这是我的代码段:
@Test
fun `request should return anon id if query param present`(@MockK(relaxed = true) req: ServerRequest)
我正在使用JUnit5(Jupiter)。
我有一个异常(exception)是:
io.mockk.MockKException: no answer found for: ServerRequest(#1).cookies()
这很奇怪,因为如果我正确理解了
relaxed
,我的ServerRequest实例应该始终具有一些value。在我的情况下为什么不呢?
最佳答案
当我写这个问题时,我发现还有另一种方法可以通过@RelaxedMockK
来指定relaxed。想象一下我的惊讶,它有效:
@Test
fun `request should return anon id if query param present`(@RelaxedMockK req: ServerRequest) {
关于kotlin - Kotlin MockK:io.mockk.MockKException:找不到答案,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54349336/