Last updated
Was this helpful?
Last updated
Was this helpful?
provides a collection of utilities for working with mocked functions. To create a mock function, do:
A mocked function can then be attributed with a return value.
The function ensures that the value is returned whenever your function is called.
We can also limit the return value to occurring just once.
ensures the value is returned once and all subsequent calls yield null
.