Hello, if I have this : `every { firstname.matches...
# mockk
j
Hello, if I have this :
every { firstname.matches(myreg.toRegex()) } returns true
why I'm getting this :
io.mockk.MockKException: Missing calls inside every { ... } block.
Do I have to do a every for
matches
and one for
toRegex
as well?