Macro

CALL

Call the original function being mocked.

Since v1.0
#define CALL(
FUNC, ...)

Parameters 🔗

FUNC in

Function to call.

... in

Function arguments.

Discussion 🔗

Calls through to the original function FUNC thereby bypassing any registered mock. If FUNC is not mocked, then it is invoked as-is.

The return value (if any) is discarded. To retrieve it use CALL_GET instead.