You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 17, 2019. It is now read-only.
I have the following overloaded mock functions
MOCK_METHOD1_T(function, void(int value));
MOCK_METHOD1_T(function, void(std::shared_ptr pointer));
if expect the call
EXPECT_CALL(*mock_object, function(testing::Pointee(10))).
Times(2);
I can't compile it, because the call of the overloaded function is ambiguous.
How can I solve this problem.
The text was updated successfully, but these errors were encountered: