Object - test : FunctionStub

Represents an object that allows stubbing function invocations

Constructor

__init

(MockFunction mockFunction)

Methods

Sets the value to be returned when the function is called.

Sets the arguments list to consider when stubbing the function call.

Sets the function behavior to do nothing when called

Sets a function to be invoked when the real function is called.

thenReturn

(any | error returnValue)

Sets the value to be returned when the function is called.

Parameters

  • returnValue any | error
  • value or error to return

withArguments

(anydata | error... args)

returns FunctionStub

Sets the arguments list to consider when stubbing the function call.

Parameters

  • args anydata | error...
  • arguments list

  • Return Type

    (FunctionStub)
  • object that allows stubbing calls to a function

doNothing

()

Sets the function behavior to do nothing when called

call

(string functionName)

Sets a function to be invoked when the real function is called.

Parameters

  • functionName string
  • mock function to call in place of the real