在googlemock中匹配自定义类型的参数

时间:2013-06-21 10:13:21

标签: c++ googlemock

我在使用google mock将函数参数与特定对象匹配时遇到问题。

请考虑以下代码:

class Foo
{
public:
    struct Bar
    {
        int foobar;
    }

    void myMethod(const Bar& bar);
}

现在我有一些测试代码,它看起来像这样:

Foo::Bar bar;
EXPECT_CALL(fooMock, myMethod(Eq(bar));

所以我想确保在调用Foo :: myMethod时,参数看起来像我本地实例化的bar对象。

当我尝试这种方法时,我收到如下错误消息:

gmock/gmock-matchers.h(738): error C2678: binary '==' : no operator found which takes a left-hand operand of type 'const Foo::Bar' (or there is no acceptable conversion)

我尝试使用Eq(ByRef(bar))定义operator ==和!=(至少==都是自由函数的成员),但我无法解决问题。唯一有用的是使用

Field(&Foo::Bar::foobar, x) 

但是这样我必须检查我的结构中的每个字段,这看起来像很多打字工作......

1 个答案:

答案 0 :(得分:6)

好的,那我就回答自己:

您必须为Foo :: Bar提供operator ==实现:

bool operator==(const Foo::Bar& first, const Foo::Bar& second)
{
    ...
}

不要将它作为成员函数添加到Foo :: Bar,而是使用自由函数。

并且,经验教训,小心 NOT 将它们放入匿名命名空间。