I have a function that is configured to be called in a certain frequency (let's say every second). I need to implement a test that checks whether the function meets this requirement.
I was hoping to have any qualifier like .Frequency(, ) but I could not find it. So I would have:
EXPECT_CALL(my_obj, obj_function()).Frequency(900, 1100);
How can I validate this requirement by using Google Test?