Google Mock和受保护的复制构造函数

时间:2017-08-25 14:33:43

标签: constructor copy protected googlemock

我有一个带有受保护的复制构造函数的类:

class ThingList
{
public:
    ThingList() {}
    virtual ~ThingList() {}

    std::vector<Thing> things;

protected:
    ThingList(const ThingList &copy) {}
};

我有另一个类使用这个:

class AnotherThing
{
public:
    AnotherThing()
    {
    }

    virtual ~AnotherThing() {}

    void DoListThing(const ThingList &list)
    {
    }
};

和这个类的模拟版本:

class MockAnotherThing : public AnotherThing
{
public:
    MOCK_METHOD1(DoListThing, void(const ThingList &list));
};

我想用一个真实的参数调用这个方法DoListThing来提供一个真实的列表:

TEST(Thing, DoSomeThingList)
{
    MockThing thing;
    ThingList list;
    MockAnotherThing anotherThing;

    list.things.push_back(Thing());

    EXPECT_CALL(anotherThing, DoListThing(list));

    anotherThing.DoListThing(list);
}

编译时收到错误:

1>..\mockit\googletest\googlemock\include\gmock\gmock-matchers.h(3746): error C2248: 'ThingList::ThingList': cannot access protected member declared in class 'ThingList'

然而,如果我进行非模拟调用它可以正常工作:

ThingList list;
AnotherThing theRealThing;
theRealThing.DoListThing(list);

如果在Mock测试中我使用&#39; _&#39;,它可以工作:

TEST(Thing, DoSomeThingList)
{
    MockThing thing;
    ThingList list;
    MockAnotherThing anotherThing;

    list.things.push_back(Thing());

    EXPECT_CALL(anotherThing, DoListThing(_));

    anotherThing.DoListThing(list);
}

但是,在这种情况下如何传递列表?如果DoListThing返回了列表,我可以使用Return,但对于像这样被修改的参数我该怎么做?

1 个答案:

答案 0 :(得分:0)

我无法通过受保护的复制构造函数,因此我的答案是创建一个类的假(虚拟)版本而忽略Google Mock。这对我来说足够好,可以测试有问题的课程。我在这里提供的示例是更大包的简化版本。