GoogleMock and QString argument



我正在尝试使用具有自定义字符串类型的gmock。

我有一个带有QString参数的方法,我想模拟它:

MOCK_METHOD1(getValue, int(QString key))

我设定了一个期望:

EXPECT_CALL(mock, getValue("someKey"));

出现错误:

error: no matching function for call to 'MyMock::gmock_getValue(const char[8])'
include/gmock/gmock.h:9339:20: note: in definition of macro 'GMOCK_EXPECT_CALL_IMPL_'
     ((obj).gmock_##call).InternalExpectedAt(__FILE__, __LINE__, #obj, #call)
 note: in expansion of macro 'EXPECT_CALL'
...
gmock/gmock.h:9730:7: note:   no known conversion for argument 3 from 'const char [6]' to 'const testing::Matcher<const QString&>&'
       gmock_##Method(GMOCK_MATCHER_(tn, F, 1) gmock_a1, 

但这是有效的:

EXPECT_CALL(mock, getValue(QString("someKey")));

如何在不使用QString()包装每个字符串文字的情况下使用字符串参数?

这是因为"someKey"不是QString,它是错误报告的const char[8],Google Test/Mokk要求这两个类相同。

同样,编译器不知道值10是int32 int64、uint32还是uint64,同样适用。

相关内容

  • 没有找到相关文章

最新更新