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.