svenjacobs
02/07/2019, 11:22 AMverify {
mock.myFunction(any()) wasNot called
}
Doesn't seem to be correct as this is always true, regardless of whether the function was called or not.verify(exactly = 0) {
mock.myFunction(any))
}
works but is there another syntax when I want to verify calls an non-calls of functions in the same verify
block?oleksiyp
02/07/2019, 11:56 AMsvenjacobs
02/07/2019, 12:14 PMmock wasNot called
?oleksiyp
02/07/2019, 12:38 PM