umock-c
umock-c copied to clipboard
STRICT_EXPECTED_CALL should have an optional variable number of arguments to describe the call
Right now I have:
STRICT_EXPECTED_CALL(create_something("a", 1));
But I want to have:
STRICT_EXPECTED_CALL(create_something("a", 1), "%s %d", "create_something for source", __LINE__);
And these printf-ish arguments would be printed in the get_expected_calls somehow as hints/pointers.