I am using MockK
for Unit-Tests and want to verify
if some function was called with current time(milliseconds) parameter.
In main app the function call:
functionName(System.currentTimeMillis())
But in test:
verify(exactly = 1) {
functionName(System.currentTimeMillis()) }
doesn't work, because milliseconds will be always different