Class: FunctionStub
Represents an object that allows stubbing function invocations.
Constructor
Gets invoked during the stub registration.
init (MockFunction mockFunction)
- mockFunction MockFunction
Methods
thenReturn | Sets the value to be returned when the function is called. |
withArguments | Sets the arguments list to consider when stubbing the function call. |
doNothing | Sets the function behavior to do nothing when called. |
call | Sets a function to be invoked when the real function is called. |
callOriginal | Sets the original function to be invoked. |
withArguments
function withArguments(anydata | error... args) returns FunctionStub
Isolated Function
Sets the arguments list to consider when stubbing the function call.
Parameters
- args anydata | error...
Arguments list
doNothing
function doNothing()
Isolated Function
Sets the function behavior to do nothing when called.
callOriginal
function callOriginal()
Isolated Function
Sets the original function to be invoked.