我在尝试开始使用Google Mocks时遇到了一个问题 - 由于某种原因,即使类型一致,它也无法告诉我在EXPECT_CALL
宏中指定的调用。我想知道它为什么不匹配第一个函数,以及我需要做什么/添加以使它与第一个函数匹配。
模拟课程:
class GMockTest : public ITest
{
public:
MOCK_METHOD2(SetParameter,
int(int nParameter, double value));
MOCK_METHOD2(SetParameter,
int(int nParameter, int value));
MOCK_METHOD2(SetParameter,
int(int nParameter, __int64 value));
}
抛出错误的测试代码:
__int64 nFrom = 0,
nTo = 0;
EXPECT_CALL(mock, SetParameter(2, nFrom))
.Times(1)
.WillOnce(Return(0));
EXPECT_CALL(mock, SetParameter(3, nTo))
.Times(1)
.WillOnce(Return(0));
编译错误:
test.cpp(1343) : error C2668: GMockTest::gmock_SetParameter' : ambiguous call to overloaded function
testmocks.h(592): could be 'testing::internal::MockSpec<F>
&GMockTest::gmock_SetParameter(const testing::Matcher<T> &,const testing::Matcher<A2> &)
'
with
[
F=int (int,__int64),
T=int,
A2=__int64
]
testmocks.h(590): or 'testing::internal::MockSpec<F>
&GMockTest::gmock_SetParameter(const testing::Matcher<T> &,const testing::Matcher<T> &)'
with
[
F=int (int,int),
T=int
]
testmocks.h(580): or 'testing::internal::MockSpec<F>
&GMockTest::gmock_SetParameter(const testing::Matcher<T> &,const testing::Matcher<FloatT
ype> &)'
with
[
F=int (int,double),
T=int,
FloatType=double
]
while trying to match the argument list '(int, __int64)'
答案 0 :(得分:26)
Google模拟无法确定要使用哪种重载。从cookbook开始,尝试使用Matcher<T>
或TypedEq<T>
匹配器指定确切的类型:
struct ITest
{
virtual int SetParameter(int n, double v) = 0;
virtual int SetParameter(int n, int v) = 0;
virtual int SetParameter(int n, __int64 v) = 0;
};
struct MockTest : public ITest
{
MOCK_METHOD2(SetParameter, int(int n, double v));
MOCK_METHOD2(SetParameter, int(int n, int v));
MOCK_METHOD2(SetParameter, int(int n, __int64 v));
};
TEST(Test, Test)
{
MockTest mock;
__int64 nFrom = 0, nTo = 0;
EXPECT_CALL(mock, SetParameter(2, Matcher<__int64>(nFrom)));
EXPECT_CALL(mock, SetParameter(3, Matcher<__int64>(nTo)));
mock.SetParameter(2, nFrom);
mock.SetParameter(3, nTo);
}
答案 1 :(得分:3)
对于那些有相同问题但不像OP不具备或关心输入参数的人,使用testing :: Matcher的其他答案解决方案可以与外卡测试结合使用:: _这样:
EXPECT_CALL(mock, SetParameter(testing::_, Matcher<__int64>(testing::_)));